diff --git a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift index a49e9a55a..0a6957d2c 100644 --- a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift +++ b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift @@ -1117,7 +1117,7 @@ private extension FeedbinAccountDelegate { func syncArticleReadState(account: Account, articleIDs: [Int]?) { - guard let articleIDs = articleIDs, !articleIDs.isEmpty else { + guard let articleIDs = articleIDs else { return } @@ -1151,7 +1151,7 @@ private extension FeedbinAccountDelegate { func syncArticleStarredState(account: Account, articleIDs: [Int]?) { - guard let articleIDs = articleIDs, !articleIDs.isEmpty else { + guard let articleIDs = articleIDs else { return }