Update notification priorities to MAX (Heads-up) for DMs and Active Peers

This commit is contained in:
callebtc
2026-01-18 02:50:15 +07:00
parent 6eb7d79ed0
commit d773f86655
@@ -241,7 +241,7 @@ class NotificationManager(
.setContentText(contentText)
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.addPerson(person)
.setShowWhen(true)
@@ -343,7 +343,7 @@ class NotificationManager(
.setContentText(contentText)
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.setPriority(NotificationCompat.PRIORITY_MIN)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.setShowWhen(true)
.setWhen(System.currentTimeMillis())