mirror of
https://github.com/thelounge/thelounge
synced 2025-03-06 16:17:21 +00:00
Merge pull request #2039 from thelounge/xpaw/fix-1721
Fix duplicate chat containers and unread markers when reconnecting
This commit is contained in:
commit
572c93d06b
1 changed files with 13 additions and 11 deletions
|
@ -228,9 +228,10 @@ function renderNetworks(data, singleNetwork) {
|
||||||
newChannels = channels;
|
newChannels = channels;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (newChannels.length > 0) {
|
||||||
chat.append(
|
chat.append(
|
||||||
templates.chat({
|
templates.chat({
|
||||||
channels: channels,
|
channels: newChannels,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -241,6 +242,7 @@ function renderNetworks(data, singleNetwork) {
|
||||||
chat.find("#chan-" + channel.id).data("needsNamesRefresh", true);
|
chat.find("#chan-" + channel.id).data("needsNamesRefresh", true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
utils.confirmExit();
|
utils.confirmExit();
|
||||||
sorting();
|
sorting();
|
||||||
|
|
Loading…
Add table
Reference in a new issue