Merge pull request #4152 from matrix-org/t3chguy/fix_mels

Fix MELS not breaking on day boundaries regression
pull/21833/head
Michael Telatynski 2020-02-29 00:18:00 +00:00 committed by GitHub
commit 0c4897a875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -955,6 +955,9 @@ class MemberGrouper {
}
shouldGroup(ev) {
if (this.panel._wantsDateSeparator(this.events[0], ev.getDate())) {
return false;
}
return isMembershipChange(ev);
}