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
d3909a32cec65ebf4a818d0d21b4479c9dddb624...6b10fdc41196c5cdd1fe29199a5ff831197a5eb5
Commits (1)
Ignore malformed I:lines
· 6b10fdc4
Randy Sommerfeld
authored
Jan 03, 2022
6b10fdc4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
exec/load/ircd/config.js
exec/load/ircd/config.js
+2
-3
No files found.
exec/load/ircd/config.js
View file @
6b10fdc4
...
...
@@ -354,10 +354,9 @@ function read_conf_config(conf) {
HLines
.
push
(
new
HLine
(
arg
[
1
],
arg
[
3
]));
break
;
case
"
I
"
:
if
(
!
arg
[
5
])
if
(
!
arg
[
5
]
||
!
parseInt
(
arg
[
5
])
)
break
;
ILines
.
push
(
new
ILine
(
arg
[
1
],
arg
[
2
],
arg
[
3
],
arg
[
4
],
arg
[
5
]));
ILines
.
push
(
new
ILine
(
arg
[
1
],
arg
[
2
],
arg
[
3
],
arg
[
4
],
parseInt
(
arg
[
5
])));
break
;
case
"
K
"
:
if
(
!
arg
[
2
])
...
...