This commit is contained in:
Mr. Stallion 2019-10-21 18:04:18 -05:00
parent 727b3d5712
commit b4315415b3
1 changed files with 11 additions and 1 deletions

View File

@ -130,7 +130,17 @@
this.connecting = false;
if (!isReconnect) {
core.conversations.channelConversations.forEach((chanConv) => chanConv.adManager.stop());
core.conversations.channelConversations.forEach(
(chanConv) => {
try {
if (chanConv.adManager) {
chanConv.adManager.stop();
}
} catch (e) {
console.error(e);
}
}
);
}
document.title = l('title');