Skip to content

Commit

Permalink
Use inverted logic since it should only hide Blogs for Tags Feed
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Horta committed May 22, 2024
1 parent 5600b47 commit 6c51762
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ class ReaderViewModel @Inject constructor(
}

private fun shouldShowBlogsFilter(readerTag: ReaderTag): Boolean {
return readerTag.isFilterable && readerTag.isFollowedSites
return readerTag.isFilterable && !readerTag.isTags
}

private fun shouldShowTagsFilter(readerTag: ReaderTag): Boolean {
Expand Down

0 comments on commit 6c51762

Please sign in to comment.