Fixed
This commit is contained in:
parent
727b3d5712
commit
b4315415b3
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue