fix TBURST

This commit is contained in:
zefie
2025-06-16 16:17:24 -04:00
parent 29f64b12a8
commit e7b6bca5d0

View File

@@ -634,6 +634,9 @@ class WTVIRC {
} }
var channel = parts[3]; var channel = parts[3];
var topic = parts[6]; var topic = parts[6];
if (topic.startsWith(':')) {
topic = topic.slice(1);
}
if (!this.channels.has(channel)) { if (!this.channels.has(channel)) {
this.createChannel(channel); this.createChannel(channel);
} }