Fixed a MAJOR TYPO

This commit is contained in:
ION606
2022-08-14 10:59:22 -07:00
parent c8b3d9b885
commit 1f1043f864
+1 -1
View File
@@ -226,7 +226,7 @@ app.post('/verifypremium', async (req, res) => {
connection.then((client) => {
const dbo = client.db('main').collection('authorized');
dbo.findOne({id: id}).then((doc) => {
dbo.findOne({ discordID: id }).then((doc) => {
if (doc != undefined) {
res.sendStatus(200);
} else {