From 5f65fba9e2b875c0f664605a0159361359997cda Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 16 May 2019 06:01:10 -0500 Subject: [PATCH] Fix bug that prevented last unread or last unstrap from changing correctly. --- Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }