fix(mentions-tab): make mentions tab actually show only mentions

This commit is contained in:
LucasGGamerM 2024-03-17 09:16:35 -03:00
parent 3939fc9795
commit 25f9e60527
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class NotificationsListFragment extends BaseStatusListFragment<Notificati
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
E.register(this);
onlyMentions=AccountSessionManager.get(accountID).isNotificationsMentionsOnly();
onlyMentions=getArguments().getBoolean("onlyMentions", false);
setHasOptionsMenu(true);
}