[FIX] broadcast channel reply (#11462)

pull/9972/head^2
Guilherme Gazzo 7 years ago committed by GitHub
parent 218fc42c4c
commit 8451e05f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/rocketchat-ui-message/client/message.js

@ -8,7 +8,7 @@ Template.message.helpers({
},
broadcast() {
const instance = Template.instance();
return !this.private && this.t && this.u._id !== Meteor.userId() && instance.room && instance.room.broadcast;
return !this.private && !this.t && this.u._id !== Meteor.userId() && instance.room && instance.room.broadcast;
},
isIgnored() {
return this.ignored;

Loading…
Cancel
Save