mirror of
https://github.com/versia-pub/server.git
synced 2025-12-08 17:28:19 +01:00
Fix wrong again in token date format
This commit is contained in:
parent
25d7a798ae
commit
e71c2ef5c9
|
|
@ -58,6 +58,6 @@ export default apiRoute<{
|
||||||
access_token: token.access_token,
|
access_token: token.access_token,
|
||||||
token_type: token.token_type,
|
token_type: token.token_type,
|
||||||
scope: token.scope,
|
scope: token.scope,
|
||||||
created_at: new Date(token.created_at).toISOString(),
|
created_at: Number(token.created_at),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue