Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
9fcce522c52d7972f15b9fc8de5981259cbc808b...b1efd07e6835df7aa2f46cfde8bf44c7d6f17049
Commits (1)
Fix undeclared variable in WHO
· b1efd07e
Randy Sommerfeld
authored
May 31, 2021
b1efd07e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
exec/load/ircd/core.js
exec/load/ircd/core.js
+2
-2
No files found.
exec/load/ircd/core.js
View file @
b1efd07e
...
...
@@ -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
);
...
...