diff options
Diffstat (limited to 'Sora/Views/MainView.swift')
| -rw-r--r-- | Sora/Views/MainView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/MainView.swift b/Sora/Views/MainView.swift index 246e7a9..5eeab5c 100644 --- a/Sora/Views/MainView.swift +++ b/Sora/Views/MainView.swift @@ -55,7 +55,7 @@ struct MainView: View { refreshTags() if manager.searchText.isEmpty { - await manager.fetchPosts() + manager.fetchPosts() } else { manager.performSearch(settings: settings) } @@ -69,7 +69,7 @@ struct MainView: View { refreshTags() if manager.posts.isEmpty { - await manager.fetchPosts() + manager.fetchPosts() } } } |