diff --git a/src/pages/news/chitchat.wpy b/src/pages/news/chitchat.wpy index 2435bfe..f3f162a 100644 --- a/src/pages/news/chitchat.wpy +++ b/src/pages/news/chitchat.wpy @@ -1055,6 +1055,9 @@ wepy.page({ // 在当前页面接收到别人发送过来的消息 reception(e) { let vm = this + if (e.to != vm.otherUserId) { + return + } vm.sendMsgReceipt(e) if (e.type == 'text' && /\[[^\]]+\]/.test(e.body)) { e.body = vm.transitionMsg(e.body)