Skip to content

Commit 477a091

Browse files
committed
Merge pull request #147 from maysale01/hotfix-default-session-schema-expects-date-not-iso-string
Bugfix: Correctly uses date instead of string for expiresAt when creating a s…
2 parents 3978e41 + 8e1f632 commit 477a091

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)