Skip to content

Commit

Permalink
Revert "[FIX] 관심으로 userNovel 등록 시 작품정보 기본탭 조회 오류 해결"
Browse files Browse the repository at this point in the history
  • Loading branch information
rinarina0429 authored Sep 14, 2024
1 parent 718f667 commit eb06e48
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public static NovelGetResponseBasic of(Novel novel, UserNovel userNovel, String
novelRatingCount,
feedCount,
userNovel.getUserNovelRating(),
userNovel.getStatus() == null ? null : userNovel.getStatus().name(),
userNovel.getStartDate() == null ? null : userNovel.getStartDate().toString(),
userNovel.getEndDate() == null ? null : userNovel.getEndDate().toString(),
userNovel.getStatus().name(),
userNovel.getStartDate() != null ? userNovel.getStartDate().toString() : null,
userNovel.getEndDate() != null ? userNovel.getEndDate().toString() : null,
userNovel.getIsInterest()
);
}
Expand Down

0 comments on commit eb06e48

Please sign in to comment.