소스 검색

Bug Fix, check supportIdList if empty before execute supportRepository.find

xuchaolang 6 년 전
부모
커밋
05b1012be8
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      rankin-product-service/src/main/java/cn/rankin/productservice/service/SupportService.java

+ 4 - 0
rankin-product-service/src/main/java/cn/rankin/productservice/service/SupportService.java

@@ -138,6 +138,10 @@ public class SupportService {
             supportIdList.add(relation.getTid());
         });
 
+        if (supportIdList.isEmpty()){
+            return new ArrayList<>();
+        }
+
         List<Support> supportList = supportRepository.findByIds(supportIdList, BaseStatusEnum.NORMAL);
 
         return supportList;