mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Filter out inactive subscriptions on iOS
This commit is contained in:
parent
08f9beab68
commit
28393974fb
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ import Views
|
|||
isLoading = true
|
||||
|
||||
do {
|
||||
subscriptions = try await dataService.subscriptions()
|
||||
subscriptions = try await dataService.subscriptions().filter { $0.status == SubscriptionStatus.active }
|
||||
} catch {
|
||||
hasNetworkError = true
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue