Skip to content

Commit

Permalink
Merge pull request #13486 from nextcloud/support-internal-video
Browse files Browse the repository at this point in the history
callview: Show internal clients with available video.
  • Loading branch information
nickvergessen authored Jan 9, 2025
2 parents fe0481f + 66cc422 commit 40b8671
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 @@ -246,7 +246,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 40b8671

Please sign in to comment.