Skip to content

Commit 8e1f632

Browse files
author
Alexander Mays
committed
Correctly uses date instead of string for expiresAt when creating a session
Signed-off-by: Alexander Mays <[email protected]>
1 parent c2373cf commit 8e1f632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

users.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function handleLogIn(req) {
7070
'authProvider': 'password'
7171
},
7272
restricted: false,
73-
expiresAt: Parse._encode(expiresAt).iso
73+
expiresAt: Parse._encode(expiresAt)
7474
};
7575

7676
if (req.info.installationId) {

0 commit comments

Comments
 (0)