Fix updating local feed list when no remote feeds.
When there were no remote feeds the logic to remove local feeds was skipped.
This commit is contained in:
parent
c6a9078c68
commit
cd85e52fdd
|
@ -612,7 +612,7 @@ private extension FeedbinAccountDelegate {
|
|||
|
||||
func syncFeeds(_ account: Account, _ subscriptions: [FeedbinSubscription]?) {
|
||||
|
||||
guard let subscriptions = subscriptions else { return }
|
||||
let subscriptions = subscriptions ?? []
|
||||
|
||||
os_log(.debug, log: log, "Syncing feeds with %ld subscriptions.", subscriptions.count)
|
||||
|
||||
|
|
Loading…
Reference in New Issue