mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
If there is no search term but there is an applied filter, perform a search after updating from the synced items
This fixes issues with filters that have very few items in them not showing historical data if the filter is applied.
This commit is contained in:
parent
75a5e9fb03
commit
062215afa4
1 changed files with 3 additions and 0 deletions
|
|
@ -183,6 +183,9 @@ import Views
|
|||
|
||||
if searchTerm.replacingOccurrences(of: " ", with: "").isEmpty {
|
||||
updateFetchController(dataService: dataService)
|
||||
if appliedFilter != LinkedItemFilter.inbox.rawValue {
|
||||
await loadSearchQuery(dataService: dataService, isRefresh: isRefresh)
|
||||
}
|
||||
} else {
|
||||
await loadSearchQuery(dataService: dataService, isRefresh: isRefresh)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue