Skip to content

Commit

Permalink
Fixed Saved Articles count only showing unread instead of total
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecowboy committed Apr 19, 2024
1 parent cd1d3df commit 7939495
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ interface FeedDao {
from feeds_with_items_for_nav_drawer
-- starred
union
select $ID_SAVED_ARTICLES as id, '' as display_title, '' as tag, '' as image_url, sum(unread) as unread_count, 0 as expanded, 1 as sort_section, 0 as sort_tag_or_feed
select $ID_SAVED_ARTICLES as id, '' as display_title, '' as tag, '' as image_url, sum(bookmarked) as unread_count, 0 as expanded, 1 as sort_section, 0 as sort_tag_or_feed
from feeds_with_items_for_nav_drawer
where bookmarked
-- tags
Expand Down

0 comments on commit 7939495

Please sign in to comment.