发送im消息时去掉执行人personId<0的限制,避免其它人发送失败

This commit is contained in:
yanglin 2024-05-07 18:55:10 +08:00
parent 0174adf960
commit 420a6d01f0
2 changed files with 6 additions and 35 deletions

View File

@ -153,7 +153,8 @@ public class MessageSendReqV3 implements Serializable {
for (PersonV3DTO receiver : receivers) {
AssertUtil.notNull(receiver.getId(), "接收者ID不能为空");
AssertUtil.isFalse(receiver.getId() <= 0, "接收者ID必须>=0");
// 去掉这个校验
//AssertUtil.isFalse(receiver.getId() <= 0, "接收者ID必须>=0");
}
}

File diff suppressed because one or more lines are too long