mirror of https://github.com/vector-im/riot-web
don't show forward option for things we cannot decrypt
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/3688/head
parent
77ce58b59d
commit
92b52a61e7
|
@ -151,7 +151,8 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.props.mxEvent.getType() === 'm.room.message') {
|
if (this.props.mxEvent.getType() === 'm.room.message'
|
||||||
|
&& this.props.mxEvent.getContent().msgtype !== 'm.bad.encrypted') {
|
||||||
forwardButton = (
|
forwardButton = (
|
||||||
<div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
<div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
||||||
Forward Message
|
Forward Message
|
||||||
|
|
Loading…
Reference in New Issue