diff options
Diffstat (limited to 'Sora/Views/Post/Grid/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index 187acc9..d5d583b 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -39,15 +39,7 @@ struct PostGridView: View { } } .onSubmit(of: .search) { - manager.performSearch() - settings - .appendToSearchHistory( - BooruSearchQuery( - provider: settings.preferredBooru, - tags: manager.tags, - searchedAt: Date() - ) - ) + manager.performSearch(settings: settings) } .navigationDestination(for: BooruPost.self) { post in PostDetailsView(post: post) |