发送im消息时去掉执行人personId<0的限制,避免其它人发送失败
This commit is contained in:
parent
0174adf960
commit
420a6d01f0
@ -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
Loading…
Reference in New Issue
Block a user