Fix Room Create ELS using MXID instead of newly set Displayname/Avatar

pull/21833/head
Michael Telatynski 2019-10-26 09:31:45 +01:00
parent 2bdd27938a
commit 3b8cb42108
1 changed files with 6 additions and 4 deletions

View File

@ -443,15 +443,17 @@ module.exports = createReactClass({
// one was itself. This way, the timestamp of the previous event === the
// timestamp of the current event, and no DateSeparator is inserted.
return this._getTilesForEvent(e, e, e === lastShownEvent);
}).reduce((a, b) => a.concat(b));
}).reduce((a, b) => a.concat(b), []);
// Get sender profile from the latest event in the summary as the m.room.create doesn't contain one
const ev = this.props.events[i];
ret.push(<EventListSummary
key="roomcreationsummary"
events={summarisedEvents}
onToggle={this._onHeightChanged} // Update scroll state
summaryMembers={[mxEv.sender]}
summaryMembers={[ev.sender]}
summaryText={_t("%(creator)s created and configured the room.", {
creator: mxEv.sender ? mxEv.sender.name : mxEv.getSender(),
creator: ev.sender ? ev.sender.name : ev.getSender(),
})}
>
{ eventTiles }
@ -529,7 +531,7 @@ module.exports = createReactClass({
// one was itself. This way, the timestamp of the previous event === the
// timestamp of the current event, and no DateSeparator is inserted.
return this._getTilesForEvent(e, e, e === lastShownEvent);
}).reduce((a, b) => a.concat(b));
}).reduce((a, b) => a.concat(b), []);
if (eventTiles.length === 0) {
eventTiles = null;