diff --git a/src/api/endpoints/auth/accept.ts b/src/api/endpoints/auth/accept.ts index 8955738eb..4ee20a6d2 100644 --- a/src/api/endpoints/auth/accept.ts +++ b/src/api/endpoints/auth/accept.ts @@ -45,7 +45,7 @@ module.exports = (params, user) => new Promise(async (res, rej) => { // Fetch token const session = await AuthSess - .findOne({ 'account.token': token }); + .findOne({ token: token }); if (session === null) { return rej('session not found');