Skip to content

Commit

Permalink
fix(greader): mark as read
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashinch committed Jan 22, 2024
1 parent 01f5f38 commit 9b061e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ class GoogleReaderRssService @Inject constructor(
}
if (markList.isNotEmpty()) googleReaderAPI.editTag(
itemIds = markList,
mark = if (isUnread) null else GoogleReaderAPI.Stream.READ.tag,
mark = if (!isUnread) GoogleReaderAPI.Stream.READ.tag else null,
unmark = if (isUnread) GoogleReaderAPI.Stream.READ.tag else null,
)
}
Expand Down

0 comments on commit 9b061e4

Please sign in to comment.