Skip to content

Commit 59e6f66

Browse files
fix: use named argument for isUnread (#1269)
1 parent c717893 commit 59e6f66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/me/ash/reader/domain/service/GoogleReaderRssService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ constructor(
808808

809809
else -> {
810810
if (before == null) {
811-
articleDao.queryMetadataAll(accountId, !isUnread)
811+
articleDao.queryMetadataAll(accountId, isUnread = !isUnread)
812812
} else {
813813
articleDao.queryMetadataAll(accountId, !isUnread, before)
814814
}

0 commit comments

Comments
 (0)