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`),