From 0c97e4e9809f3ab1d5ec4812ce275bbe6290047c Mon Sep 17 00:00:00 2001 From: lincomatic Date: Fri, 20 Mar 2026 09:52:45 -0700 Subject: [PATCH] Fix require statement for db module --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 235f26df..6c0b8efa 100644 --- a/server.js +++ b/server.js @@ -45,7 +45,7 @@ function computeContentHash(rawHex) { return crypto.createHash('sha256').update(toHash).digest('hex').slice(0, 16); } catch { return rawHex.slice(0, 16); } } -const db = require('./db') +const db = require('./db'); const pktStore = new PacketStore(db, config.packetStore || {}).load(); const configuredChannelKeys = config.channelKeys || {}; const hashChannels = Array.isArray(config.hashChannels) ? config.hashChannels : [];