mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-02 16:25:56 +03:00
Show m.room.create event before the ELS on room upgrade
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
cc79afb99d
commit
5ec4b6efcd
1 changed files with 5 additions and 0 deletions
|
@ -411,6 +411,11 @@ module.exports = createReactClass({
|
||||||
readMarkerInSummary = true;
|
readMarkerInSummary = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If this m.room.create event should be shown (room upgrade) then show it before the summary
|
||||||
|
if (this._shouldShowEvent(mxEv)) {
|
||||||
|
ret.push(...this._getTilesForEvent(prevEvent, mxEv, false));
|
||||||
|
}
|
||||||
|
|
||||||
const summarisedEvents = []; // Don't add m.room.create here as we don't want it inside the summary
|
const summarisedEvents = []; // Don't add m.room.create here as we don't want it inside the summary
|
||||||
for (;i + 1 < this.props.events.length; i++) {
|
for (;i + 1 < this.props.events.length; i++) {
|
||||||
const collapsedMxEv = this.props.events[i + 1];
|
const collapsedMxEv = this.props.events[i + 1];
|
||||||
|
|
Loading…
Reference in a new issue