No error if nncp_users.lua doesn't exist.
authorplugd <plugd@thelambdalab.xyz>
Thu, 15 Aug 2024 20:13:33 +0000 (22:13 +0200)
committerplugd <plugd@thelambdalab.xyz>
Thu, 15 Aug 2024 20:13:33 +0000 (22:13 +0200)
qwikboard

index 2da9e31..f309337 100755 (executable)
--- a/qwikboard
+++ b/qwikboard
@@ -396,8 +396,6 @@ function cmd.init ()
    fs.touch(qb.path .. "/notices/hello")
    fs.touch(qb.path .. "/notices/news")
    fs.touch(qb.path .. "/notices/goodbye")
-
-   fs.touch(qb.path .. "/nncp_users.lua")
 end
 
 -- qwkout: generate QWK file
@@ -436,7 +434,9 @@ end
 
 local function restore_nncp_usernames()
    nncp_usernames = {}
-   dofile(qb.path .. "/nncp_users.lua")
+   if fs.exists(qb.path .. "/nncp_users.lua") then
+      dofile(qb.path .. "/nncp_users.lua")
+   end
 end
 
 local function store_nncp_usernames()