fix upcoming notice closing

This commit is contained in:
Acors24
2024-09-04 00:15:17 +02:00
parent ae4f850ff4
commit 5577b38e2b

View File

@@ -2597,6 +2597,9 @@ function hotkeyListener(e: KeyboardEvent): void {
} else if (keybindEquals(key, closeSkipNoticeKey)) {
for (let i = 0; i < skipNotices.length; i++) {
skipNotices.pop().close();
}
for (let i = 0; i < upcomingNotices.length; i++) {
upcomingNotices.pop().close();
}