fix: flipped "show only unread" (closes #21)

This commit is contained in:
relikd
2025-10-27 16:21:31 +01:00
parent 0c481d18dd
commit 575d1eaec8
2 changed files with 4 additions and 4 deletions

View File

@@ -58,8 +58,8 @@ typedef NS_ENUM(NSInteger, MenuItemTag) {
// Check user preferences to show only unread entries
if (unread == 0 &&
((fg.type == FEED && UserPrefsBool(Pref_groupUnreadOnly)) ||
(fg.type == GROUP && UserPrefsBool(Pref_globalUnreadOnly)))) {
((fg.type == FEED && UserPrefsBool(Pref_globalUnreadOnly)) ||
(fg.type == GROUP && UserPrefsBool(Pref_groupUnreadOnly)))) {
return nil;
}