Skip to content

Commit

Permalink
feat(notification-filters): treat reactions as favorites when filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM committed Oct 1, 2023
1 parent df2211f commit c7017c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected List<StatusDisplayItem> buildDisplayItems(Notification n){
if(!getLocalPrefs().notificationFilters.reblog)
return new ArrayList<>();
}
case FAVORITE -> {
case FAVORITE, REACTION -> {
if(!getLocalPrefs().notificationFilters.favourite)
return new ArrayList<>();
}
Expand Down

0 comments on commit c7017c1

Please sign in to comment.