Skip to content

Commit 84eea1c

Browse files
frontend: src: components: video-manager: VideoManager: Hide secondary stream from radcam
1 parent 79c8884 commit 84eea1c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/frontend/src/components/video-manager/VideoManager.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@ export default Vue.extend({
136136
if (device.name === 'Fake source') {
137137
return has_active_stream(device) || settings.is_pirate_mode
138138
}
139+
140+
// Do not show RadCam's secondary stream
141+
if (device.name === 'UnderwaterCam - IPCamera (UnderwaterCam)' && device.source.endsWith('/stream_1')) {
142+
return has_active_stream(device) || settings.is_pirate_mode
143+
}
139144
return true
140145
}
141146

0 commit comments

Comments
 (0)