Fix event listener for notifications.js

This commit is contained in:
Omar Roth 2019-06-16 18:11:34 -05:00
parent 485a3e29e7
commit bbb40aef51
No known key found for this signature in database
GPG key ID: B8254FB7EC3D37F2

View file

@ -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,13 +80,14 @@ function create_notification_stream(subscriptions) {
} }
} }
notifications.onerror = function (event) { notifications.addEventListener('error', handle_notification_error);
notifications.stream();
}
function handle_notification_error(event) {
console.log('Something went wrong with notifications, trying to reconnect...'); console.log('Something went wrong with notifications, trying to reconnect...');
notifications = { close: function () { } }; notifications = { close: function () { } };
setTimeout(function () { get_subscriptions(create_notification_stream) }, 1000); setTimeout(function () { get_subscriptions(create_notification_stream) }, 1000);
}
notifications.stream();
} }
window.addEventListener('load', function (e) { window.addEventListener('load', function (e) {