From b6e80ae576dd8785ad075227dc3dc953f62d6c65 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 24 Oct 2025 09:18:31 -0700 Subject: [PATCH] Update bbstools.py --- modules/bbstools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/bbstools.py b/modules/bbstools.py index 3b54962..b59c284 100644 --- a/modules/bbstools.py +++ b/modules/bbstools.py @@ -34,6 +34,7 @@ def load_bbsdb(): # if the message is not a duplicate, add it to bbs_messages Maintain the message ID sequence new_id = len(bbs_messages) + 1 bbs_messages.append([new_id, msg[1], msg[2], msg[3]]) + return True except FileNotFoundError: logger.debug("System: bbsdb.pkl not found, creating new one") bbs_messages = [[1, "Welcome to meshBBS", "Welcome to the BBS, please post a message!",0]]