Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend_py/src/services/cameras/drivers/shd/shd.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def can_follow(self) -> bool:
def on_external_stream_started(self) -> None:
# Override method
# We reapply assuming the stream has already been started
self.reapply_sensor_config()
# self.reapply_sensor_config()

# We then want to apply the config from the camera
mjpeg_camera = self.find_camera_with_format("MJPG")
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/components/dwe/cameras/camera-controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ export const CameraControls = ({
<InternalControlWrapper
key={uiControls[name].control_id}
control={uiControls[name]}
disabled={device.is_managed}
// NOTE: External management behavior is changed after v0.7.3 to account for SDK v1.2.0 changes
// This means versions AFTER v0.7.3 will no longer work as intended with SDK versions before v1.2.0
disabled={device.is_managed || device.is_externally_managed}
/>
),
)}
Expand Down
Loading