1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-11-27 14:28:49 +09:00

Revert a change for AuthSess query

This commit is contained in:
Akihiko Odaki 2018-03-27 16:04:22 +09:00
parent 285bf04221
commit f12ea885f7

View File

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