Allowing multiple notifications by default

This commit is contained in:
LucasGGamerM
2023-01-06 11:31:25 -03:00
parent 101e7efd74
commit 67338b6c85

View File

@@ -160,6 +160,6 @@ public class PushNotificationReceiver extends BroadcastReceiver{
if(AccountSessionManager.getInstance().getLoggedInAccounts().size()>1){
builder.setSubText(accountName);
}
nm.notify(accountID, NOTIFICATION_ID, builder.build());
nm.notify(accountID, (int)System.currentTimeMillis(), builder.build());
}
}