From 66cc422e52739ed1f3ca7ba2766bb0dbfa46c04d Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Mon, 7 Oct 2024 11:14:02 +0200 Subject: [PATCH] feat(CallView): Show internal clients with available video. Signed-off-by: Joachim Bauch --- src/components/CallView/CallView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CallView/CallView.vue b/src/components/CallView/CallView.vue index f6366974542..3d560ef1d6c 100644 --- a/src/components/CallView/CallView.vue +++ b/src/components/CallView/CallView.vue @@ -227,7 +227,7 @@ export default { }, callParticipantModels() { - return callParticipantCollection.callParticipantModels.value.filter(callParticipantModel => !callParticipantModel.attributes.internal) + return callParticipantCollection.callParticipantModels.value.filter(callParticipantModel => !callParticipantModel.attributes.internal || callParticipantModel.attributes.videoAvailable) }, callParticipantModelsWithScreen() {