Skip to content

Commit

Permalink
feat(CallView): Show internal clients with available video.
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Bauch <[email protected]>
  • Loading branch information
fancycode committed Nov 19, 2024
1 parent b681d0e commit 66cc422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CallView/CallView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 66cc422

Please sign in to comment.