Commit 180d7eea authored by Alexander Ivanov's avatar Alexander Ivanov

Revert "Invalid timestamp for persistent notification (see #123)"

This reverts commit 70021300.
parent e7e52c09
......@@ -394,7 +394,7 @@ public class NotificationManager implements OnInitializedListener,
if (Application.SDK_INT >= 14 && SettingsManager.eventsPersistent()) {
// Ongoing icons are in the left side, so hide this one.
notification.icon = R.drawable.ic_placeholder;
notification.when = 0;
notification.when = Long.MIN_VALUE;
} else {
// Ongoing icons are in the right side, so show this one.
updateNotification(notification, ticker);
......@@ -450,10 +450,11 @@ public class NotificationManager implements OnInitializedListener,
updateNotification(persistentNotification, ticker);
} else {
persistentNotification.icon = R.drawable.ic_placeholder;
persistentNotification.when = 0;
persistentNotification.when = Application.SDK_INT >= 9 ? -Long.MAX_VALUE
: Long.MAX_VALUE;
}
}
if (SettingsManager.eventsPersistent()) {
notify(PERSISTENT_NOTIFICATION_ID, persistentNotification);
} 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