mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
More places where we assumed sender would not be null
This commit is contained in:
parent
cb25740961
commit
2351ad997c
@ -69,11 +69,13 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
var avatar, sender, resend;
|
var avatar, sender, resend;
|
||||||
if (!this.props.continuation) {
|
if (!this.props.continuation) {
|
||||||
avatar = (
|
if (this.props.mxEvent.sender) {
|
||||||
<div className="mx_MessageTile_avatar">
|
avatar = (
|
||||||
<MemberAvatar member={this.props.mxEvent.sender} />
|
<div className="mx_MessageTile_avatar">
|
||||||
</div>
|
<MemberAvatar member={this.props.mxEvent.sender} />
|
||||||
);
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
sender = <SenderProfile mxEvent={this.props.mxEvent} aux={aux} />;
|
sender = <SenderProfile mxEvent={this.props.mxEvent} aux={aux} />;
|
||||||
}
|
}
|
||||||
if (this.props.mxEvent.status === "not_sent" && !this.state.resending) {
|
if (this.props.mxEvent.status === "not_sent" && !this.state.resending) {
|
||||||
|
Loading…
Reference in New Issue
Block a user