mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 13:59:16 +01:00
Fix wrong again in token date format
This commit is contained in:
parent
25d7a798ae
commit
e71c2ef5c9
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue