mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
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:
parent
88fe7b5a72
commit
6af13dbac2
@ -52,6 +52,9 @@ export function initNotificationCount() {
|
|||||||
source.close();
|
source.close();
|
||||||
window.location.href = AppSubUrl;
|
window.location.href = AppSubUrl;
|
||||||
});
|
});
|
||||||
|
window.addEventListener('beforeunload', () => {
|
||||||
|
source.close();
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user