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

Handle a case where lib is not an object (?).

parent 00920235
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -11,7 +11,7 @@ var lib = argv[0];
var list = argv[1];
var query_string=argv[2];
if(lib==undefined)
if(lib == null || typeof lib != "object")
lib = load(new Object, "sbbslist_lib.js");
if(list == undefined)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment