Skip to content

Commit

Permalink
feat: 마지막 활성화 시간 임시 null 처리 (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
injoon2019 authored Aug 31, 2024
1 parent 4725f2d commit a0b00f5
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ class BottleFacade(
keyword = bottle.sourceUser.userProfile?.profileSelect?.keyword,
userImageUrl = bottle.sourceUser.userProfile?.imageUrl,
expiredAt = bottle.expiredAt,
lastActivatedAt = getLastActivatedAtInKorean(basedAt = bottle.sourceUser.lastActivatedAt, now = LocalDateTime.now())
//lastActivatedAt = getLastActivatedAtInKorean(basedAt = bottle.sourceUser.lastActivatedAt, now = LocalDateTime.now())
lastActivatedAt = null,
)
}

Expand Down Expand Up @@ -204,7 +205,8 @@ class BottleFacade(
mbti = otherUser.userProfile?.profileSelect?.mbti,
keyword = otherUser.userProfile?.profileSelect?.keyword,
userImageUrl = otherUser.userProfile?.imageUrl,
lastActivatedAt = getLastActivatedAtInKorean(basedAt = otherUser.lastActivatedAt, now = LocalDateTime.now())
//lastActivatedAt = getLastActivatedAtInKorean(basedAt = otherUser.lastActivatedAt, now = LocalDateTime.now()),
lastActivatedAt = null,
)
}

Expand Down

0 comments on commit a0b00f5

Please sign in to comment.