|
@@ -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));
|
|
|
}
|
|
}
|
|
|
|
|
|