This commit is contained in:
Peter Maquiran
2022-09-26 23:14:19 +01:00
parent 6158e9a40e
commit efd35bced5
9 changed files with 450 additions and 25 deletions
+4 -3
View File
@@ -751,13 +751,14 @@ export class RoomService {
this.hasLoadHistoryMessageRF.includes(message?.localReference)
);
await this.messages.forEach( async (message, i) => {
let i = 0
for(let message of this.messages) {
if(this.hasLoadHistoryMessageRF.includes(message?.localReference)) {
this.messages.splice(i, 1)
}
})
i++;
}
this.hasLoadHistoryMessageRF = [];