Stop ads when leaving a channel

This commit is contained in:
Mr. Stallion 2021-12-29 12:59:29 -06:00
parent b42a1417b0
commit acfd2bf9cf
1 changed files with 8 additions and 0 deletions

View File

@ -641,6 +641,14 @@ export default function(this: any): Interfaces.State {
queuedJoin(state.pinned.channels.slice());
});
core.channels.onEvent(async(type, channel, member) => {
if (type === 'leave') {
const conv = state.channelMap[channel.id];
if (conv) {
conv.adManager.stop();
}
}
if(type === 'join')
if(member === undefined) {
const conv = new ChannelConversation(channel);