Skip to content
Snippets Groups Projects
Commit c3415404 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix channel.js line 372: TypeError: c.list[i] is undefined

Cyan may have a better fix. <shrug>
parent 20d77d5a
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -368,7 +368,7 @@ function IRCClient_set_chanmode(chan,cm_args,ts) {
continue;
}
if (MODE[i].list) {
if (MODE[i].list && c.list[i] !== undefined) {
for (j in c.list[i][true]) {
if (chan.is_str_member_of_chanmode_list(i,c.list[i][true][j])) {
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment