Removed setInterval when removing the notice.

This commit is contained in:
Ajay Ramachandran
2019-08-19 22:26:49 -04:00
parent 7adef119d3
commit 85f9bb1d34

View File

@@ -359,6 +359,9 @@ class SkipNotice {
if (notice != null) { if (notice != null) {
notice.remove(); notice.remove();
} }
//remove setInterval
if (this.countdownInterval != -1) clearInterval(this.countdownInterval);
} }
} }