Skip to content

Commit

Permalink
Merge pull request #185 from Team-WSS/fix/#184
Browse files Browse the repository at this point in the history
[FIX] 관심으로 userNovel 등록 시 작품정보 기본탭 조회 오류 해결
  • Loading branch information
rinarina0429 authored Sep 13, 2024
2 parents ef296a5 + eaf8965 commit 718f667
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().name(),
userNovel.getStartDate() != null ? userNovel.getStartDate().toString() : null,
userNovel.getEndDate() != null ? userNovel.getEndDate().toString() : null,
userNovel.getStatus() == null ? null : userNovel.getStatus().name(),
userNovel.getStartDate() == null ? null : userNovel.getStartDate().toString(),
userNovel.getEndDate() == null ? null : userNovel.getEndDate().toString(),
userNovel.getIsInterest()
);
}
Expand Down

0 comments on commit 718f667

Please sign in to comment.