Skip to content

Commit

Permalink
feat : 키워드 관련 토론 조회
Browse files Browse the repository at this point in the history
  • Loading branch information
minseok1015 committed Aug 17, 2024
1 parent ed21d02 commit 0917bfb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public List<DebateByKeywordDTO> GetDebatesByKeyword(Long keywordID, String sort)
for (Debate debate : debates) {
String title= debate.getTitle();
String content =debate.getContent();
String mediaUrl =null;
String mediaUrl =debate.getImageUrl();
Long hit = debate.getHits();
Long comment = (long) debate.getComment().size();
debateList.add(new DebateByKeywordDTO(title,content,mediaUrl,hit,comment));
Expand Down

0 comments on commit 0917bfb

Please sign in to comment.