From e77dff247266b970b299e3fcda005563dcf28972 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Tue, 1 Jan 2019 13:32:24 +0000 Subject: [PATCH] If you "sbbslist update" but the BBS isn't listed, don't return an error (-1), since new installs won't yet be listed in their own database (yet). --- exec/sbbslist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/sbbslist.js b/exec/sbbslist.js index b8b403193b..48ee5b0f9d 100644 --- a/exec/sbbslist.js +++ b/exec/sbbslist.js @@ -2341,7 +2341,7 @@ function main() var index = lib.system_index(list, system.name); if(index < 0) { alert("System '" + system.name + "' does not exist"); - exit(-1); + exit(0); } var bbs=list[index]; bbs.software = "Synchronet"; -- GitLab