mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
don't show forward option for things we cannot decrypt
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
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 = (
|
||||
<div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
||||
Forward Message
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user