修复无法emiji标记别人的消息

This commit is contained in:
kuaifan 2022-06-04 20:03:17 +08:00
parent 50f5b7fcf7
commit 7a9ad7163b

View File

@ -675,7 +675,7 @@ class DialogController extends AbstractController
return Base::retError("参数错误");
}
//
$msg = WebSocketDialogMsg::whereId($msg_id)->whereUserid($user->userid)->first();
$msg = WebSocketDialogMsg::whereId($msg_id)->first(); // 不限制会员身份
if (empty($msg)) {
return Base::retError("消息不存在或已被删除");
}