From 73008a8d5115cecb3b250b273498f6d17af4eea9 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Mon, 7 Oct 2024 11:14:02 +0200 Subject: [PATCH] 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() {