Skip to content

Commit

Permalink
[fix] reports 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoo0419 committed Jun 12, 2024
1 parent adb9fc7 commit 3322168
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public MonthlyKeywordsDto getMonthlyKeywords(
positiveKeywords.set(i, rankAnswerDtoList.get(i).keyword());
}
if (rankAnswerDtoList.get(rankAnswerDtoList.size() - i - 1).emotion() < 0){
negativeKeywords.set(i, rankAnswerDtoList.get(i).keyword());
negativeKeywords.set(i, rankAnswerDtoList.get(rankAnswerDtoList.size() - i - 1).keyword());
}
}
return MonthlyKeywordsDto.of(positiveKeywords, negativeKeywords);
Expand Down

0 comments on commit 3322168

Please sign in to comment.