We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
id_token.updated_at
1 parent def4071 commit 57d4817Copy full SHA for 57d4817
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@ory/kratos-selfservice-ui-node",
3
- "version": "0.13.0-15",
+ "version": "0.13.0-17",
4
"description": "A reference implementation of a selfservice UI for ORY Kratos in node.js",
5
"homepage": "https://github.com/ory/kratos-selfservice-ui-node#readme",
6
"bugs": {
src/routes/consent.ts
@@ -58,7 +58,7 @@ const extractSession = (
58
}
59
60
if (identity.updated_at) {
61
- session.id_token.updated_at = identity.updated_at
+ session.id_token.updated_at = Date.parse(identity.updated_at)
62
63
64
return session
0 commit comments