diff --git a/src/components/CallView/shared/Video.vue b/src/components/CallView/shared/Video.vue index c7ba14b53..c5aed812a 100644 --- a/src/components/CallView/shared/Video.vue +++ b/src/components/CallView/shared/Video.vue @@ -37,6 +37,7 @@ @@ -267,7 +268,11 @@ export default { return !this.showSharedScreen && this.hasVideo && !this.isSelected } else { if (this.isStripe) { - return !(this.isSelected ? this.isSelected : this.isPromoted) && this.hasVideo + if (this.hasSelectedVideo) { + return !this.isSelected && this.hasVideo + } else { + return !this.isPromoted && this.hasVideo + } } else { return this.hasVideo }