We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e085214 commit 98e692eCopy full SHA for 98e692e
src/murfey/client/tui/screens.py
@@ -773,7 +773,7 @@ def on_button_pressed(self, event: Button.Pressed):
773
upstream_tiff_paths_response = requests.get(
774
f"{self.app._environment.url.geturl()}/visits/{event.button.label}/upstream_tiff_paths"
775
)
776
- upstream_tiff_paths = upstream_tiff_paths_response.json()
+ upstream_tiff_paths = upstream_tiff_paths_response.json() or []
777
for tp in upstream_tiff_paths:
778
(download_dir / tp).parent.mkdir(exist_ok=True, parents=True)
779
stream_response = requests.get(
0 commit comments