Browse Source

修改极光推送的条件

Yangzw 2 months ago
parent
commit
48d9afc250

+ 1 - 1
feifan-module-mall/feifan-module-sale-biz/src/main/java/cn/newfeifan/mall/module/sale/service/merchantapply/MerchantApplyServiceImpl.java

@@ -132,7 +132,7 @@ public class MerchantApplyServiceImpl implements MerchantApplyService {
             return;
         }
         List<String> userRsgIds = memberUserApi.getUserRsgIds(sentSystemUserId, null);
-        if (userRsgIds != null) {
+        if (userRsgIds != null && !userRsgIds.isEmpty()) {
             String url = wcChatMessageUtilsApi.getUrl(title, merchantApply.getId(), sentSystemUserId);
             wcChatMessageUtilsApi.jPush(userRsgIds, alert, title, url, merchantApply.getApplyMemberUserId(), sentSystemUserId, merchantApply.getId());
         }