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
6f8041a2a4a59a93d48604de761bff6e8eefac71...ad7a74744db3a9fd126f96aa1555e3b00237242c
Commits (1)
Remove accidental debug print() statement left from previous commit
· ad7a7474
Rob Swindell
authored
Feb 23, 2022
ad7a7474
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletion
+0
-1
exec/avatars.js
exec/avatars.js
+0
-1
No files found.
exec/avatars.js
View file @
ad7a7474
...
...
@@ -40,7 +40,6 @@ function parse_user_msg(text)
// Parse JSON block
for
(
i
=
0
;
i
<
text
.
length
;
i
++
)
{
print
(
i
+
"
:
"
+
text
[
i
]);
if
(
text
[
i
].
trimRight
().
toLowerCase
()
==
"
json-begin
"
)
json_begin
=
i
+
1
;
else
if
(
text
[
i
].
trimRight
().
toLowerCase
()
==
"
json-end
"
)
...
...