Просмотр исходного кода

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 4 лет назад
Родитель
Сommit
d131d53cbb
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 3 добавлений и 0 удалений
  1. 3
    0
      web_src/js/features/notification.js

+ 3
- 0
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;
}


Загрузка…
Отмена
Сохранить