Skip to content
Merged
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 src/instamatic/camera/camera_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def _eval_dct(self, dct):
else:
raise RuntimeError(f'Received empty response when evaluating {dct=}')

if self.use_shared_memory and acquiring_image and data:
if status == 200 and self.use_shared_memory and acquiring_image and data:
data = self.get_data_from_shared_memory(**data)

if status == 200:
Expand Down
Loading