summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-05-26 11:03:31 +0200
committerGitHub <noreply@github.com>2023-05-26 11:03:31 +0200
commit48ee656aa05bacae7425d4de0f85aff4495d0311 (patch)
treebad0ad8a5be089823e80924439df56f528554b9d
parent5a76cd402c019e8725f8e11cc969e91e5bee2890 (diff)
parent916499f03bbdc01e13c2dfccda85f5740f5e5c4e (diff)
Merge pull request #9627 from nextcloud/backport/9625/stable27
[stable27] fix(TypingIndicator): Actors are only unique by type+id
-rw-r--r--src/components/NewMessage/NewMessageTypingIndicator.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/NewMessage/NewMessageTypingIndicator.vue b/src/components/NewMessage/NewMessageTypingIndicator.vue
index 084e6691b..dc272c465 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()
})
},