Close EventSource before unloading the page (#11539)

Should eliminate a error in the Firefox console regarding the connection
being interrupted while the page was loading.
This commit is contained in:
silverwind
2020-05-22 12:57:54 +02:00
committed by GitHub
parent 88fe7b5a72
commit 6af13dbac2

View File

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