From c3f99a1897785089b89e95c0c6cf7cb162a91866 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Wed, 12 Aug 2020 22:38:26 -0500 Subject: [PATCH] Hotfix sqlite remove --- src/sqlitedb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqlitedb.js b/src/sqlitedb.js index 91aa713..3731131 100644 --- a/src/sqlitedb.js +++ b/src/sqlitedb.js @@ -50,6 +50,6 @@ module.exports = class SQLiteDB { * @param {string} discordID */ remove(discordID) { - return this.client.sqlite.model.destroy({ where: { discordID } }); + return this.model.destroy({ where: { discordID } }); } }; \ No newline at end of file