floor created at

This commit is contained in:
cutestnekoaqua 2023-02-11 01:51:14 +01:00
parent ec23cb65d4
commit 49ad84b754

View File

@ -175,7 +175,7 @@ mastoRouter.post("/oauth/token", async (ctx) => {
access_token: atData.accessToken,
token_type: "Bearer",
scope: "read write follow",
created_at: new Date().getTime() / 1000,
created_at: Math.floor(new Date().getTime() / 1000),
};
} catch (err: any) {
console.error(err);