Skip to content

Commit

Permalink
Fix swipe gesture attempting to mark feeds and groups as read
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Bestavros <markbest@bu.edu>
  • Loading branch information
mbestavros committed Jan 12, 2024
1 parent ecc2f79 commit db99ab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/me/ash/reader/ui/page/home/flow/FlowPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ fun FlowPage(
}
) {
flowViewModel.markAsRead(
groupId = filterUiState.group?.id,
feedId = filterUiState.feed?.id,
groupId = null,
feedId = null,
articleId = it.article.id,
MarkAsReadConditions.All
)
Expand Down

0 comments on commit db99ab4

Please sign in to comment.