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

Fix with in adding new FTN addres to [fidonet] addr_list in msgs.ini

The address needed to be converted to a string first.
parent 7e82bafe
No related branches found
No related tags found
No related merge requests found
......@@ -613,7 +613,7 @@ if(your.node === temp_node && network.email && network.email.indexOf('@') > 0
if(!find_sys_addr(fidoaddr.to_str(your))
&& confirm("Add node address " + fidoaddr.to_str(your) + " to your configuration")) {
var fido_addr_list = msgs_ini.iniGetValue("fidonet", "addr_list", []);
fido_addr_list.push(your);
fido_addr_list.push(fidoaddr.to_str(your));
msgs_ini.iniSetValue("fidonet", "addr_list", fido_addr_list);
}
......
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