You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a Wakeup scheduled for 5 minutes from the time of scheduling. I happened to have the screen on when the Wakeup was meant to fire, so it missed its wakeup time. Now there is a Wakeup scheduled for an hour ago that is still looming in memory.
I've tried to: Wakeup.each(function(e) { Wakeup.cancel(e); Wakeup.cancel(e.id); console.log(e.id + " canceled"); }); Wakeup.cancel('all');
Each time this is called, I am returned the Wakeup's ID, so I know it is still there.
How do I go about removing this Wakeup from memory?
The text was updated successfully, but these errors were encountered:
I had a Wakeup scheduled for 5 minutes from the time of scheduling. I happened to have the screen on when the Wakeup was meant to fire, so it missed its wakeup time. Now there is a Wakeup scheduled for an hour ago that is still looming in memory.
I've tried to:
Wakeup.each(function(e) { Wakeup.cancel(e); Wakeup.cancel(e.id); console.log(e.id + " canceled"); }); Wakeup.cancel('all');
Each time this is called, I am returned the Wakeup's ID, so I know it is still there.
How do I go about removing this Wakeup from memory?
The text was updated successfully, but these errors were encountered: