mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-14 11:57:45 +03:00
Propertly thread showHiddenEventsInTimeline through groupers
This commit is contained in:
parent
9e2ab0d432
commit
e4250e254c
1 changed files with 3 additions and 3 deletions
|
@ -537,7 +537,7 @@ export default class MessagePanel extends React.Component {
|
|||
|
||||
if (grouper) {
|
||||
if (grouper.shouldGroup(mxEv)) {
|
||||
grouper.add(mxEv);
|
||||
grouper.add(mxEv, this.context?.showHiddenEventsInTimeline);
|
||||
continue;
|
||||
} else {
|
||||
// not part of group, so get the group tiles, close the
|
||||
|
@ -1167,10 +1167,10 @@ class MemberGrouper {
|
|||
return isMembershipChange(ev);
|
||||
}
|
||||
|
||||
add(ev) {
|
||||
add(ev, showHiddenEvents) {
|
||||
if (ev.getType() === 'm.room.member') {
|
||||
// We can ignore any events that don't actually have a message to display
|
||||
if (!hasText(ev, this.context?.showHiddenEventsInTimeline)) return;
|
||||
if (!hasText(ev, showHiddenEvents)) return;
|
||||
}
|
||||
this.readMarker = this.readMarker || this.panel._readMarkerForEvent(
|
||||
ev.getId(),
|
||||
|
|
Loading…
Reference in a new issue