Skip to content
Snippets Groups Projects
Commit 1fc2657f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix exception when line is null

imapservice.js line 736: TypeError: line is null
parent 0e82baed
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -733,7 +733,7 @@ function parse_command(line)
return(ret);
}
while(line.length) {
while(line) {
switch(line.charAt(0)) {
case '"':
args.push(parse_quotedstring());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment