Hotfix sqlite remove

This commit is contained in:
Snazzah 2020-08-12 22:38:26 -05:00
parent 0deca84899
commit c3f99a1897
No known key found for this signature in database
GPG key ID: 5E71D54F3D86282E

View file

@ -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 } });
}
};