mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Revert a change for AuthSess query
This commit is contained in:
parent
8a2bf01167
commit
055c522e6b
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue