Commit 8c937d5f authored by a-iv's avatar a-iv

Merge pull request #168 from vkotovv/notification_date_fix

Invalid timestamp for persistent notification (Closes #123)
parents 156897f1 70021300
...@@ -394,7 +394,7 @@ public class NotificationManager implements OnInitializedListener, ...@@ -394,7 +394,7 @@ public class NotificationManager implements OnInitializedListener,
if (Application.SDK_INT >= 14 && SettingsManager.eventsPersistent()) { if (Application.SDK_INT >= 14 && SettingsManager.eventsPersistent()) {
// Ongoing icons are in the left side, so hide this one. // Ongoing icons are in the left side, so hide this one.
notification.icon = R.drawable.ic_placeholder; notification.icon = R.drawable.ic_placeholder;
notification.when = Long.MIN_VALUE; notification.when = 0;
} else { } else {
// Ongoing icons are in the right side, so show this one. // Ongoing icons are in the right side, so show this one.
updateNotification(notification, ticker); updateNotification(notification, ticker);
...@@ -450,11 +450,10 @@ public class NotificationManager implements OnInitializedListener, ...@@ -450,11 +450,10 @@ public class NotificationManager implements OnInitializedListener,
updateNotification(persistentNotification, ticker); updateNotification(persistentNotification, ticker);
} else { } else {
persistentNotification.icon = R.drawable.ic_placeholder; persistentNotification.icon = R.drawable.ic_placeholder;
persistentNotification.when = Application.SDK_INT >= 9 ? -Long.MAX_VALUE persistentNotification.when = 0;
: Long.MAX_VALUE;
} }
} }
if (SettingsManager.eventsPersistent()) { if (SettingsManager.eventsPersistent()) {
notify(PERSISTENT_NOTIFICATION_ID, persistentNotification); notify(PERSISTENT_NOTIFICATION_ID, persistentNotification);
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment