From ea56cefe90afebf292cc14bd4720193355a00c0a Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Sat, 4 May 2024 18:10:25 -0500 Subject: [PATCH] fixup filename --- backend/src/util/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/util/db.js b/backend/src/util/db.js index 1c4b1be..779bd02 100644 --- a/backend/src/util/db.js +++ b/backend/src/util/db.js @@ -3,7 +3,7 @@ const { Level } = require('level'); const dataDir = process.env.LEVEL_DATA_DIR || 'data'; module.exports = { - applicationData: new Level(`${dataDir}/applicationData}`, { valueEncoding: 'json' }), + applicationData: new Level(`${dataDir}/applicationData`, { valueEncoding: 'json' }), forum: new Level(`${dataDir}/forum`, { valueEncoding: 'json' }), authorAddresses: new Level(`${dataDir}/authorAddresses`), authorPrivKeys: new Level(`${dataDir}/authorPrivKeys`),