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:
Tom Grimwood-Taylor 2019-06-03 17:04:30 +01:00
parent c6a9078c68
commit cd85e52fdd
1 changed files with 1 additions and 1 deletions

View File

@ -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)