summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2023-06-15 23:45:00 +0200
committerGitHub <noreply@github.com>2023-06-15 23:45:00 +0200
commit61bdd266adca9d4fbe30a0e0b44072eda4107c95 (patch)
tree8cc6e5666bab4f1fd7021880baaae9b04d7a4cb8 /src
parent3af07a8ef04f581457841a6269cdbe981a6773d3 (diff)
parentca5fd9f3b71357b76feb51d2a04d12c0ec593c6d (diff)
Merge pull request #9790 from nextcloud/backport/9787/stable27
[stable27] Show `Guest` to self when guest reacts in call with no name
Diffstat (limited to 'src')
-rw-r--r--src/components/CallView/shared/ReactionToaster.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/CallView/shared/ReactionToaster.vue b/src/components/CallView/shared/ReactionToaster.vue
index 9b0d0c743..b12058520 100644
--- a/src/components/CallView/shared/ReactionToaster.vue
+++ b/src/components/CallView/shared/ReactionToaster.vue
@@ -138,7 +138,7 @@ export default {
id: model.attributes.peerId,
reaction,
name: isLocalModel
- ? this.$store.getters.getDisplayName()
+ ? this.$store.getters.getDisplayName() || this.$store.getters.getGuestName()
: this.getParticipantName(model),
seed: Math.random(),
})