Skip to content
Snippets Groups Projects
Commit b1efd07e authored by Randy Sommerfeld's avatar Randy Sommerfeld
Browse files

Fix undeclared variable in WHO

parent 9fcce522
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -1871,8 +1871,8 @@ function IRCClient_do_complex_who(cmd) { ...@@ -1871,8 +1871,8 @@ function IRCClient_do_complex_who(cmd) {
var sf_voice = false; var sf_voice = false;
var sf_done = false; var sf_done = false;
var tmp_wc = who.Channel; var tmp_wc = who.Channel;
for (cc in tmp_wc) { for (i in tmp_wc) {
switch(tmp_wc[cc]) { switch(tmp_wc[i]) {
case "@": case "@":
sf_op = true; sf_op = true;
who.Channel = who.Channel.slice(1); who.Channel = who.Channel.slice(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment