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 27708e2 commit b862d44Copy full SHA for b862d44
src/murfey/server/api.py
@@ -1630,6 +1630,8 @@ async def gather_upstream_tiffs(visit_name: str):
1630
for tiff_dir in tiff_dirs:
1631
for f in tiff_dir.glob("**/*.tiff"):
1632
upstream_tiff_paths.append(str(f.relative_to(tiff_dir)))
1633
+ for f in tiff_dir.glob("**/*.tif"):
1634
+ upstream_tiff_paths.append(str(f.relative_to(tiff_dir)))
1635
return upstream_tiff_paths
1636
1637
0 commit comments