Fix bug that prevented last unread or last unstrap from changing correctly.

This commit is contained in:
Maurice Parker 2019-05-16 06:01:10 -05:00
parent 6882b152d9
commit 5f65fba9e2
1 changed files with 2 additions and 2 deletions

View File

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