Skip to content

Commit

Permalink
Merge pull request #235 from Samweli/collection_dialog_fix
Browse files Browse the repository at this point in the history
Fix collection information dialog
  • Loading branch information
Samweli authored Apr 7, 2023
2 parents 0c3293f + c94efe6 commit 4221444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qgis_stac/api/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def prepare_collection_result(
links.append(resource_link)

providers = []
for provider in collection_response.providers:
for provider in collection_response.providers or []:
resource_provider = ResourceProvider(
name=provider.name,
description=provider.description,
Expand Down

0 comments on commit 4221444

Please sign in to comment.