Skip to content

Commit

Permalink
[fix] #78 방목록 조회 relation 분기처리 추가2
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoo0419 committed Jun 6, 2024
1 parent 7342fdb commit bbffa0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private boolean checkPenalty(final Question question) {
}

private String getRandomKeyword(final Profile profile){
if (profile.getKeywords() == "-"){
if (Objects.equals(profile.getKeywords(), "-")){
return "기분";
}
List<String> keywords = Arrays.stream(profile.getKeywords().split(",")).toList();
Expand Down

0 comments on commit bbffa0a

Please sign in to comment.