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

I/O optimization of the nodelist() method by using the (new to v3.17c)

system.get_node() method of reading a node's data record (from node.dab).
parent 46844bb7
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ function nodelist(print, active, listself, is_sysop, options)
var n;
for(n = 0; n < system.node_list.length; n++) {
var node = system.node_list[n];
var node = system.get_node(n + 1);
if(active && node.status != NODE_INUSE)
continue;
if(js.global.bbs && n == (bbs.node_num - 1)) {
......
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