Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/components/CallView/shared/EmptyCallView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,6 @@ export default {
|| this.conversation.objectType === CONVERSATION.OBJECT_TYPE.PHONE_TEMPORARY)
},

conversationDisplayName() {
return this.conversation && this.conversation.displayName
},

canInviteOthers() {
return this.conversation && (
this.conversation.participantType === PARTICIPANT.TYPE.OWNER
Expand Down Expand Up @@ -143,7 +139,8 @@ export default {
return t('spreed', 'Calling …')
}
if (this.isOneToOneConversation) {
return t('spreed', 'Waiting for {user} to join the call', { user: this.conversationDisplayName })
// Rendered via Vue text interpolation - avoid double escaping to correctly render special characters
return t('spreed', 'Waiting for {user} to join the call', { user: this.conversation.displayName }, { escape: false })
}
return t('spreed', 'Waiting for others to join the call …')
},
Expand Down
Loading