Skip to content

Commit

Permalink
fix(backend/oauth/api/userinfo): updated_atの実装が間違っている問題を修正 (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
u1-liquid authored Feb 19, 2024
1 parent a1ae0f7 commit 9c8e239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/server/oauth/OAuth2ProviderService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ export class OAuth2ProviderService {
picture: accessToken.user?.avatarUrl,
email: user?.email,
email_verified: user?.emailVerified,
updated_at: accessToken.lastUsedAt?.getTime() ?? 0 / 1000,
updated_at: (accessToken.lastUsedAt?.getTime() ?? 0) / 1000,
};
});
}
Expand Down

0 comments on commit 9c8e239

Please sign in to comment.