Procházet zdrojové kódy

Close EventSource before unloading the page (#11539) (#11557)

Should eliminate a error in the Firefox console regarding the connection
being interrupted while the page was loading.
tags/v1.12.0-rc2
silverwind před 4 roky
rodič
revize
d131d53cbb
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  1. 3
    0
      web_src/js/features/notification.js

+ 3
- 0
web_src/js/features/notification.js Zobrazit soubor

@@ -52,6 +52,9 @@ export function initNotificationCount() {
source.close();
window.location.href = AppSubUrl;
});
window.addEventListener('beforeunload', () => {
source.close();
});
return;
}


Načítá se…
Zrušit
Uložit