Fix swipe gesture attempting to mark feeds and groups as read

Signed-off-by: Mark Bestavros <markbest@bu.edu>
This commit is contained in:
Mark Bestavros 2024-01-12 12:37:30 -05:00
parent ecc2f793d1
commit db99ab444a

View File

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