Skip to content
Snippets Groups Projects
Commit ed7f4902 authored by rswindell's avatar rswindell
Browse files

Don't error if there's no .ini file when importing.

Fix typo in import_netuser_list().
parent 543a3571
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ function find_name(objs, name)
function import_netuser_list(hdr, list)
{
var objs = [];
var file = new File(this.netuser_fname(hdr.from_net_addr));
var file = new File(lib.netuser_fname(hdr.from_net_addr));
if(file.open("r")) {
objs = file.iniGetAllObjects();
file.close();
......@@ -181,8 +181,7 @@ function import_from_msgbase(msgbase, import_ptr, limit, all)
if(ini.open("r")) {
import_ptr=ini.iniGetValue("avatars","import_ptr", 0);
ini.close();
} else if(debug)
print("Error " + ini.error + " opening " + ini.name);
}
}
highest=import_ptr;
print("import_ptr = " + import_ptr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment