mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 15:40:57 -07:00
[API] Fix bug
This commit is contained in:
parent
bb2a10db18
commit
952146caf1
1 changed files with 6 additions and 0 deletions
|
@ -96,9 +96,15 @@ module.exports = (params) =>
|
|||
});
|
||||
|
||||
// Delete session
|
||||
|
||||
/* https://github.com/Automattic/monk/issues/178
|
||||
AuthSess.deleteOne({
|
||||
_id: session._id
|
||||
});
|
||||
*/
|
||||
AuthSess.remove({
|
||||
_id: session._id
|
||||
});
|
||||
|
||||
// Response
|
||||
res({
|
||||
|
|
Loading…
Reference in a new issue