mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
fix self-highlight
This commit is contained in:
parent
d2a731e255
commit
957ef9cdc8
1 changed files with 8 additions and 0 deletions
|
@ -111,6 +111,14 @@ module.exports = React.createClass({
|
||||||
shouldHighlight: function() {
|
shouldHighlight: function() {
|
||||||
var actions = MatrixClientPeg.get().getPushActionsForEvent(this.props.mxEvent);
|
var actions = MatrixClientPeg.get().getPushActionsForEvent(this.props.mxEvent);
|
||||||
if (!actions || !actions.tweaks) { return false; }
|
if (!actions || !actions.tweaks) { return false; }
|
||||||
|
|
||||||
|
// don't show self-highlights from another of our clients
|
||||||
|
if (this.props.mxEvent.sender &&
|
||||||
|
this.props.mxEvent.sender.userId === MatrixClientPeg.get().credentials.userId)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return actions.tweaks.highlight;
|
return actions.tweaks.highlight;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue