Skip to content

Commit 5bac245

Browse files
committed
fix: use file path from eodag_stac_collection
1 parent 89383ee commit 5bac245

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stac_fastapi/eodag/dag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def fetch_external_stac_collections(
5151
ext_stac_collections: dict[str, dict[str, Any]] = {}
5252

5353
for collection in collections:
54-
file_path = getattr(collection, "stacCollection", None)
54+
file_path = getattr(collection, "eodag_stac_collection", None)
5555
if not file_path:
5656
continue
5757
logger.info(f"Fetching external STAC collection for {collection.id}")

0 commit comments

Comments
 (0)