Delete all new Timer messages

This commit is contained in:
Tanner Collin 2023-02-23 18:30:27 -07:00
parent 443921c30e
commit 13d9596978

View File

@ -359,8 +359,13 @@ function showMessage(msgid) {
function checkMessages(options) {
options=options||{};
if (MESSAGES.length && MESSAGES[0].title == "Timer") {
var goBack = false;
while (MESSAGES.length && MESSAGES[0].title == "Timer") {
MESSAGES.pop(0);
goBack = true;
}
if (goBack) {
return load();
}