From b0a24b6f17732bf9f2f3eafe32b06e3843bdbd7c Mon Sep 17 00:00:00 2001 From: Tom Grimwood-Taylor Date: Thu, 6 Jun 2019 14:23:06 +0100 Subject: [PATCH] Revert "Fix updating local feed list when no remote feeds." cd85e52fdd5c796994debbcd1575d84bab0d3f14 --- Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift index 1c7a75971..00c494a82 100644 --- a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift +++ b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift @@ -614,7 +614,7 @@ private extension FeedbinAccountDelegate { func syncFeeds(_ account: Account, _ subscriptions: [FeedbinSubscription]?) { - let subscriptions = subscriptions ?? [] + guard let subscriptions = subscriptions else { return } os_log(.debug, log: log, "Syncing feeds with %ld subscriptions.", subscriptions.count)