From 61085bf2dbd9de131c964fa451274cfa45806ef3 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 30 Jan 2022 02:41:43 +0300 Subject: [PATCH] Update db.js --- scripts/core/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/db.js b/scripts/core/db.js index 032e7199..6f9442cf 100644 --- a/scripts/core/db.js +++ b/scripts/core/db.js @@ -70,7 +70,7 @@ class Database { const db = {} -db.channels = new Database(`${DB_DIR}/channels.db`) +db.queue = new Database(`${DB_DIR}/queue.db`) db.programs = new Database(`${DB_DIR}/programs.db`) module.exports = db