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
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -1871,8 +1871,8 @@ function IRCClient_do_complex_who(cmd) {
var sf_voice = false;
var sf_done = false;
var tmp_wc = who.Channel;
for (cc in tmp_wc) {
switch(tmp_wc[cc]) {
for (i in tmp_wc) {
switch(tmp_wc[i]) {
case "@":
sf_op = true;
who.Channel = who.Channel.slice(1);
......
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