Skip to content

Commit

Permalink
Merge pull request #115 from TelePigeon/fix/113
Browse files Browse the repository at this point in the history
[fix] 월간 키워드 조회 수정
  • Loading branch information
minwoo0419 committed Aug 13, 2024
2 parents ade6df0 + bfe497c commit d2949c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class AnswerService {
private final S3Service s3Service;
private final HurryRemover hurryRemover;

private static String ANSWER_S3_UPLOAD_FOLDER = "answer/";
private static final String ANSWER_S3_UPLOAD_FOLDER = "answer/";

@Transactional
public Answer create(
Expand Down Expand Up @@ -203,7 +203,7 @@ public MonthlyKeywordsDto getMonthlyKeywords(
) {
User user = userRetriever.findById(userId);
Room room = roomRetriever.findById(roomId);
Profile profile = profileRetriever.findByUserAndRoom(user, room);
Profile profile = profileRetriever.findByUserNotAndRoom(user, room);
List<RankAnswerDto> rankAnswerDtoList = answerRetriever.findAvgEmotion(
profile,
date
Expand Down

0 comments on commit d2949c7

Please sign in to comment.