mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03:00
Don't show for anything that doesn't have a msgtype and body
otherwise the server will just reject it anyway Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
2eb715002f
commit
0a1ebc2487
1 changed files with 11 additions and 7 deletions
|
@ -151,13 +151,17 @@ module.exports = React.createClass({
|
|||
);
|
||||
}
|
||||
|
||||
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
|
||||
</div>
|
||||
);
|
||||
if (this.props.mxEvent.getType() === 'm.room.message') {
|
||||
const content = this.props.mxEvent.getContent();
|
||||
if (content.msgtype // truthy check msgtype
|
||||
&& content.msgtype !== 'm.bad.encrypted'
|
||||
&& content.hasOwnProperty('body')) {
|
||||
forwardButton = (
|
||||
<div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
||||
Forward Message
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
viewSourceButton = (
|
||||
|
|
Loading…
Reference in a new issue