Browse Source

处理未读的消息计数不更新BUG

huyy 7 years ago
parent
commit
9e8b0f7c07

+ 1 - 1
src/main/java/com/uas/platform/b2c/trade/seek/service/impl/SeekPurchaseBomServiceImpl.java

@@ -889,7 +889,7 @@ public class SeekPurchaseBomServiceImpl implements SeekPurchaseBomService {
         try {
             List<Product> products = new ArrayList<>();
             //判断传入参数是否为空
-            if (!CollectionUtils.isEmpty(newProducts)) {
+            if (CollectionUtils.isEmpty(newProducts)) {
                 map.put("success", false);
                 map.put("message", "参数为空");
             }