|
|
@@ -71,7 +71,7 @@ public class AsyncChatSopService {
|
|
|
|
|
|
private void processInternal(ChatSopRuleTimeVO timeVO, QwSopTemp temp, Map<String, QwUserVO> qwUserMap, Map<String, QwGroupChat> groupChatMap) {
|
|
|
if(StringUtils.isNotEmpty(timeVO.getChatId())){
|
|
|
- List<SopUserLogs> list = Arrays.stream(timeVO.getChatId().split(",")).map(e -> {
|
|
|
+ List<SopUserLogs> list = Arrays.stream(timeVO.getChatId().split(",")).filter(StringUtils::isNotEmpty).map(e -> {
|
|
|
SopUserLogs sopUserLogs = new SopUserLogs();
|
|
|
sopUserLogs.setSopId(timeVO.getId());
|
|
|
sopUserLogs.setSopTempId(temp.getId());
|