1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-10-18 09:19:34 +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); put("org.telegram.messenger", NotificationType.TELEGRAM);
// Threema // Threema
put("ch.threema.app", NotificationType.TELEGRAM); put("ch.threema.app", NotificationType.THREEMA);
// Twitter // Twitter
put("org.mariotaku.twidere", NotificationType.TWITTER); put("org.mariotaku.twidere", NotificationType.TWITTER);

View File

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