only for finalised events
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/3688/head
parent
7676fd960e
commit
7777be89ee
|
@ -151,11 +151,9 @@ module.exports = React.createClass({
|
|||
);
|
||||
}
|
||||
|
||||
if (this.props.mxEvent.getType() === 'm.room.message') {
|
||||
if (!eventStatus && 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')) {
|
||||
if (content.msgtype && content.msgtype !== 'm.bad.encrypted' && content.hasOwnProperty('body')) {
|
||||
forwardButton = (
|
||||
<div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}>
|
||||
Forward Message
|
||||
|
|
Loading…
Reference in New Issue