Skip to content

Commit

Permalink
fix(mentions-tab): make mentions tab actually show only mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM committed Mar 17, 2024
1 parent 3939fc9 commit 25f9e60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected boolean wantsComposeButton() {
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
E.register(this);
onlyMentions=AccountSessionManager.get(accountID).isNotificationsMentionsOnly();
onlyMentions=getArguments().getBoolean("onlyMentions", false);
setHasOptionsMenu(true);
}

Expand Down

0 comments on commit 25f9e60

Please sign in to comment.