Skip to content

Commit

Permalink
fix: (#47) 전체 이슈 조회 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eNoLJ committed Jun 15, 2021
1 parent 0a10770 commit 95fce82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private User findByUserName(String userName) {
}

public BooleanExpression labelEquals(List<String> labels) {
if (labels.isEmpty()) {
if (labels == null) {
return null;
}
List<Label> labelsList = getLabels(labels);
Expand Down

0 comments on commit 95fce82

Please sign in to comment.