Commit af45663d by weiss

1

1 parent e63af74a
...@@ -449,7 +449,7 @@ public class FeiShuApiService { ...@@ -449,7 +449,7 @@ public class FeiShuApiService {
public String queryChatId() { public String queryChatId() {
List<ChatMessage> list = chatMessageService.findAll(); List<ChatMessage> list = chatMessageService.findAll();
if (CollectionUtil.isEmpty(list) || list.size() > 1) { if (CollectionUtil.isEmpty(list)) {
return null; return null;
} }
List<ChatMessage> remainList = list.stream().filter(chatMessage1 -> ObjectUtil.equal(chatMessage1.getType(), 11) List<ChatMessage> remainList = list.stream().filter(chatMessage1 -> ObjectUtil.equal(chatMessage1.getType(), 11)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!