We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69c73b0 commit 19b502cCopy full SHA for 19b502c
app.html
@@ -3999,7 +3999,7 @@
3999
const _updateTextureDynamic = async () => {
4000
for (let i = 0; i < channels.length; i++) {
4001
const channel = channels[i];
4002
- channel.selected = !!rtcWs && rtcWs.userName === channel.user && rtcWs.channelName === channel.channel;
+ channel.selected = !!rtcWs && rtcWs.userName === channel.user && rtcWs.channelName.replace(/^.+?\//, '') === channel.channel;
4003
}
4004
const t = text.toLowerCase();
4005
const localChannels = t ?
0 commit comments