forked from FoundKeyGang/FoundKey
Merge pull request #1315 from akihikodaki/host
Revert a change for AuthSess query
This commit is contained in:
commit
d6e1aa78cd
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