Skip to content

Commit

Permalink
πŸ› :: 히히
Browse files Browse the repository at this point in the history
  • Loading branch information
Daybreak312 committed Nov 8, 2023
1 parent ad43ea9 commit 3bb685d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public TokenResponse createToken(String accountId) {

return TokenResponse.builder()
.accessToken(accessToken)
.accessTokenExp(Date(now.getTime() + jwtProperties.getAccessExpiredExp))
.accessTokenExp(new Date(now.getTime() + jwtProperties.getAccessExpiredExp()))
.refreshToken(refreshToken)
.refreshTokenExp(Date(now.getTime() + jwtProperties.getRefreshExpiredExp))
.refreshTokenExp(new Date(now.getTime() + jwtProperties.getRefreshExpiredExp()))
.build();
}

Expand Down

0 comments on commit 3bb685d

Please sign in to comment.