1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-16 02:14:04 +02:00

Fixed accidentally changed color for telegram fixed threema notification

type not being used
This commit is contained in:
Lukas Veneziano 2017-12-27 09:19:17 +01:00 committed by Andreas Shimokawa
parent 6b339a3013
commit f194cc00ed
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ public class AppNotificationType extends HashMap<String, NotificationType> {
put("org.telegram.messenger", NotificationType.TELEGRAM);
// Threema
put("ch.threema.app", NotificationType.TELEGRAM);
put("ch.threema.app", NotificationType.THREEMA);
// Twitter
put("org.mariotaku.twidere", NotificationType.TWITTER);

View File

@ -56,8 +56,8 @@ public enum NotificationType {
SKYPE(PebbleIconID.NOTIFICATION_SKYPE, PebbleColor.VividCerulean),
SLACK(PebbleIconID.NOTIFICATION_SLACK, PebbleColor.Folly),
SNAPCHAT(PebbleIconID.NOTIFICATION_SNAPCHAT, PebbleColor.Icterine),
TELEGRAM(PebbleIconID.NOTIFICATION_TELEGRAM, PebbleColor.JaegerGreen),
THREEMA(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.VividCerulean),
TELEGRAM(PebbleIconID.NOTIFICATION_TELEGRAM, PebbleColor.VividCerulean),
THREEMA(PebbleIconID.NOTIFICATION_HIPCHAT, PebbleColor.JaegerGreen),
TRANSIT(PebbleIconID.LOCATION, PebbleColor.JaegerGreen),
TWITTER(PebbleIconID.NOTIFICATION_TWITTER, PebbleColor.BlueMoon),
VIBER(PebbleIconID.NOTIFICATION_VIBER, PebbleColor.VividViolet),