Delete all new Timer messages

master
Tanner Collin 1 year ago
parent 443921c30e
commit 13d9596978
  1. 7
      messagegui/app.js

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

Loading…
Cancel
Save