Fix errors when an anonymous user leaves the shared worker

pull/1/head
yflory 2020-02-21 12:07:53 +01:00
parent d3939e87b2
commit d0bce11c21
1 changed files with 4 additions and 1 deletions

View File

@ -2089,9 +2089,12 @@ define([
store.onlyoffice.removeClient(clientId);
} catch (e) { console.error(e); }
try {
store.mailbox.removeClient(clientId);
if (store.mailbox) {
store.mailbox.removeClient(clientId);
}
} catch (e) { console.error(e); }
Object.keys(store.modules).forEach(function (key) {
if (!store.modules[key]) { return; }
if (!store.modules[key].removeClient) { return; }
try {
store.modules[key].removeClient(clientId);