diff options
author | lookshe <github@lookshe.org> | 2015-04-11 20:23:25 +0200 |
---|---|---|
committer | lookshe <github@lookshe.org> | 2015-04-11 20:23:25 +0200 |
commit | 3a814addab32a46fea677765032e5d4ba8bb5161 (patch) | |
tree | ad595e727b761b38be4dd82a47182fd29ebcc437 /src/main | |
parent | c829f612cdb466c8329b2d96fbb86900bc52b6c7 (diff) |
correct parsing of led color
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/eu/siacs/conversations/services/NotificationService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/eu/siacs/conversations/services/NotificationService.java b/src/main/java/eu/siacs/conversations/services/NotificationService.java index fa079829..0ecec392 100644 --- a/src/main/java/eu/siacs/conversations/services/NotificationService.java +++ b/src/main/java/eu/siacs/conversations/services/NotificationService.java @@ -224,7 +224,7 @@ public class NotificationService { private int getLedNotificationColor(SharedPreferences preferences) { String ledColorString = preferences.getString("led_notification_color", "0xffffffff"); try { - return Integer.valueOf(ledColorString); + return Long.decode(ledColorString).intValue(); } catch (NumberFormatException e) { return 0xffffffff; } |