Commit 36964c54 by Sixong.Zhu

u

parent bfc118a7
Showing with 8 additions and 1 deletions
...@@ -326,8 +326,15 @@ ...@@ -326,8 +326,15 @@
return true; return true;
} }
if (this.messageBody.eid) {
const o = +this.messageBody.eid; const o = +this.messageBody.eid;
return o === +this.chatMyId; const m1 = o === +this.chatMyId;
if (m1 && Xim.isBackend() && this.messageBody.oid) {
return +this.messageBody.oid === +Xim.getOrgId();
}
return m1;
}
return false;
} }
private get userName() { private get userName() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment