Skip to content

Commit

Permalink
#327 [hotfix] UTC -> KST 로 변환하는 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
hyejungg committed May 6, 2023
1 parent 93c79db commit f07e496
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
import lombok.extern.slf4j.Slf4j;

@Slf4j
@ToString
@Getter
@NoArgsConstructor(access = AccessLevel.PRIVATE)
Expand All @@ -38,7 +40,7 @@ public static NotificationInfo of(Notification notification, LocalDateTime now)
.type(notification.getType())
.content(notification.getContent())
.isRead(notification.isRead())
.createdAt(DateUtils.passedTime(now, DateUtils.convertUtcToKst(notification.getCreatedAt())))
.createdAt(DateUtils.passedTime(now, notification.getCreatedAt()))
.build();
}
}

0 comments on commit f07e496

Please sign in to comment.