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
If I complete all outstanding reviews, the notifier button will take me to lessons as expected.
However, it doesn't seem to update its badge when new reviews become available and just defaults to the lessons page when I click on it.
The only way I've found to reset this is to go into the actual Reviews module, which then updates the icon badge.
I'm running Firefox 95.0.2 for reference. Thanks for all the work on this extension!
The text was updated successfully, but these errors were encountered:
if (when) browser.alarms.create(REFRESH_ALARM, { when });
is wrong. It passes in a timestamp in the form "2022-11-15T00:00:00.000Z". On Firefox, when is a double in milliseconds past the epoch. Something like this would work:
if (when) { wd = new Date( when ).getTime(); browser.alarms.create(REFRESH_ALARM, { when: wd }); }
@wiiaboo , have you retired this project? The requirement that addons now be signed makes this hard to fix myself, and I am not really up to scratch on how to contribute fixes.
If I complete all outstanding reviews, the notifier button will take me to lessons as expected.
However, it doesn't seem to update its badge when new reviews become available and just defaults to the lessons page when I click on it.
The only way I've found to reset this is to go into the actual Reviews module, which then updates the icon badge.
I'm running Firefox 95.0.2 for reference. Thanks for all the work on this extension!
The text was updated successfully, but these errors were encountered: