Commit 3b159c88 by Sebastián Katzer

Only restore not already triggered notifications on reboot

parent c455704d
......@@ -42,7 +42,9 @@ public class RestoreReceiver extends AbstractRestoreReceiver {
*/
@Override
public void onRestore (Notification notification) {
notification.schedule();
if (notification.isScheduled()) {
notification.schedule();
}
}
/**
......
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