From 90188ac5ef74c8663d9327f818d5afe29c0e9181 Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 22 May 2020 00:04:04 +0200 Subject: [PATCH] Close EventSource before unloading the page Should eliminate a error in the Firefox console regarding the connection being interrupted while the page was loading. --- web_src/js/features/notification.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web_src/js/features/notification.js b/web_src/js/features/notification.js index 8b843e98069f1..0ea7f93c8d6e0 100644 --- a/web_src/js/features/notification.js +++ b/web_src/js/features/notification.js @@ -52,6 +52,9 @@ export function initNotificationCount() { source.close(); window.location.href = AppSubUrl; }); + window.addEventListener('beforeunload', () => { + source.close(); + }); return; }