helixiao 11 ماه پیش
والد
کامیت
c3d3de0f0d

+ 4 - 1
linkwe-chinacoal/src/main/java/com/linkwechat/coal/modules/bdshdb/customer/scheduled/ScheduledIntelligentService.java

@@ -320,7 +320,10 @@ public class ScheduledIntelligentService {
 
 
     private List<String> getStrings(WeCustomer t) {
     private List<String> getStrings(WeCustomer t) {
         String tagIds = t.getTagIds();
         String tagIds = t.getTagIds();
-        String[] split = tagIds.split(",");
+        String[] split = new String[0];
+        if (tagIds != null) {
+            split = tagIds.split(",");
+        }
         return new ArrayList<>(Arrays.asList(split));
         return new ArrayList<>(Arrays.asList(split));
     }
     }