Skip to content
Snippets Groups Projects
Commit 86ef0af0 authored by Kayz's avatar Kayz
Browse files

Update doorscan.js - fix "TypeError: argv[i].toLowerCase is not a function"...

Update doorscan.js - fix "TypeError: argv[i].toLowerCase is not a function" when being called from webv4
parent 812e9a69
No related branches found
No related tags found
2 merge requests!463MRC mods by Codefenix (2024-10-20),!88Update doorscan.js - fix "TypeError: argv[i].toLowerCase is not a function"...
Pipeline #1222 passed
......@@ -1204,6 +1204,7 @@ function doScan()
}
for(i in argv) {
if (typeof argv[i] == "String") {
switch(argv[i].toLowerCase()) {
case 'scan':
doScan();
......@@ -1231,3 +1232,4 @@ for(i in argv) {
break;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment