mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
Fix typo
This commit is contained in:
parent
92704dc7f7
commit
d253143969
@ -101,7 +101,7 @@ extension FamiliarFollowersViewController: UserTableViewCellDelegate {
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.tableView.reloadData()
|
||||
|
@ -127,7 +127,7 @@ extension FollowerListViewController: UserTableViewCellDelegate {
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.tableView.reloadData()
|
||||
|
@ -125,7 +125,7 @@ extension FollowingListViewController: UserTableViewCellDelegate {
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.tableView.reloadData()
|
||||
|
@ -119,7 +119,7 @@ extension FavoritedByViewController: UserTableViewCellDelegate {
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.tableView.reloadData()
|
||||
|
@ -119,7 +119,7 @@ extension RebloggedByViewController: UserTableViewCellDelegate {
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.tableView.reloadData()
|
||||
|
@ -138,7 +138,7 @@ extension SearchHistoryViewController: SearchHistorySectionHeaderCollectionReusa
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.collectionView.reloadData()
|
||||
|
@ -267,7 +267,7 @@ extension SearchResultViewController: UserTableViewCellDelegate {
|
||||
user: user.asRecord,
|
||||
buttonState: state
|
||||
)
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetchinbg the blocked users will not return the user followed
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { // hack: otherwise fetching the blocked users will not return the user followed
|
||||
Task { @MainActor in
|
||||
try await self.viewModel.fetchFollowedBlockedUserIds()
|
||||
self.tableView.reloadData()
|
||||
|
Loading…
x
Reference in New Issue
Block a user