mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Fix event listener for notifications.js
This commit is contained in:
parent
485a3e29e7
commit
bbb40aef51
1 changed files with 8 additions and 7 deletions
|
@ -45,7 +45,7 @@ function create_notification_stream(subscriptions) {
|
||||||
|
|
||||||
notifications.onmessage = function (event) {
|
notifications.onmessage = function (event) {
|
||||||
if (!event.id) {
|
if (!event.id) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var notification = JSON.parse(event.data);
|
var notification = JSON.parse(event.data);
|
||||||
|
@ -80,15 +80,16 @@ function create_notification_stream(subscriptions) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
notifications.onerror = function (event) {
|
notifications.addEventListener('error', handle_notification_error);
|
||||||
console.log('Something went wrong with notifications, trying to reconnect...');
|
|
||||||
notifications = { close: function () { } };
|
|
||||||
setTimeout(function () { get_subscriptions(create_notification_stream) }, 1000);
|
|
||||||
}
|
|
||||||
|
|
||||||
notifications.stream();
|
notifications.stream();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handle_notification_error(event) {
|
||||||
|
console.log('Something went wrong with notifications, trying to reconnect...');
|
||||||
|
notifications = { close: function () { } };
|
||||||
|
setTimeout(function () { get_subscriptions(create_notification_stream) }, 1000);
|
||||||
|
}
|
||||||
|
|
||||||
window.addEventListener('load', function (e) {
|
window.addEventListener('load', function (e) {
|
||||||
localStorage.setItem('notification_count', document.getElementById('notification_count') ? document.getElementById('notification_count').innerText : '0');
|
localStorage.setItem('notification_count', document.getElementById('notification_count') ? document.getElementById('notification_count').innerText : '0');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue