mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 03:05:51 +03:00
fix up memberlist a bit more
This commit is contained in:
parent
6280adc6e7
commit
348aa3e5e1
1 changed files with 5 additions and 2 deletions
|
@ -252,8 +252,11 @@ module.exports = {
|
|||
if (i > 0 && count < this.state.messageCap - 1) {
|
||||
if (this.state.room.timeline[i].sender &&
|
||||
this.state.room.timeline[i - 1].sender &&
|
||||
this.state.room.timeline[i].sender.userId ===
|
||||
this.state.room.timeline[i - 1].sender.userId)
|
||||
(this.state.room.timeline[i].sender.userId ===
|
||||
this.state.room.timeline[i - 1].sender.userId) &&
|
||||
(this.state.room.timeline[i].getType() ==
|
||||
this.state.room.timeline[i - 1].getType())
|
||||
)
|
||||
{
|
||||
continuation = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue