From 6387364face56e4c3d5e8cb8af2044bcc360f053 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 25 May 2023 16:20:54 +0200 Subject: [PATCH] fix(TypingIndicator): Actors are only unique by type+id Signed-off-by: Joas Schilling --- src/components/NewMessage/NewMessageTypingIndicator.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/NewMessage/NewMessageTypingIndicator.vue b/src/components/NewMessage/NewMessageTypingIndicator.vue index 084e6691b17..dc272c4654f 100644 --- a/src/components/NewMessage/NewMessageTypingIndicator.vue +++ b/src/components/NewMessage/NewMessageTypingIndicator.vue @@ -70,7 +70,8 @@ export default { typingParticipants() { return this.$store.getters.participantsListTyping(this.token).filter(participant => { - return participant.actorId !== this.$store.getters.getActorId() + return participant.actorType !== this.$store.getters.getActorType() + || participant.actorId !== this.$store.getters.getActorId() }) },