Fix bug that prevented last unread or last unstrap from changing correctly.
This commit is contained in:
parent
6882b152d9
commit
5f65fba9e2
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue