1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-23 18:36:50 +01:00

Treat notifications from Signal as chat messages

This commit is contained in:
Andreas Shimokawa 2015-12-06 16:09:07 +01:00
parent 39e09946cd
commit 05a8436f7c
2 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
###Changelog ###Changelog
####Next Version ####Next Version
+ Treat Signal notifications as chat notifications
* Fix crash when contacts cannot be read on Android 6.0 (non-granted pemissions) * Fix crash when contacts cannot be read on Android 6.0 (non-granted pemissions)
####Version 0.6.7 ####Version 0.6.7

View File

@ -204,6 +204,7 @@ public class NotificationListener extends NotificationListenerService {
notificationSpec.type = NotificationType.SMS; notificationSpec.type = NotificationType.SMS;
break; break;
case "eu.siacs.conversations": case "eu.siacs.conversations":
case "org.thoughtcrime.securesms":
notificationSpec.type = NotificationType.CHAT; notificationSpec.type = NotificationType.CHAT;
break; break;
case "org.indywidualni.fblite": case "org.indywidualni.fblite":