session-specific notification badge

fix sk22#470
This commit is contained in:
sk
2023-03-21 10:03:31 +01:00
committed by LucasGGamerM
parent 5395855775
commit 5a9a3eb140
3 changed files with 5 additions and 4 deletions

View File

@@ -1,8 +1,9 @@
package org.joinmastodon.android.events;
public class NotificationReceivedEvent {
public String id;
public NotificationReceivedEvent(String id) {
public String account, id;
public NotificationReceivedEvent(String account, String id) {
this.account = account;
this.id = id;
}
}