Skip to content

Commit

Permalink
fix(core): metadata mapping for date parameter (#1480)
Browse files Browse the repository at this point in the history
  • Loading branch information
alambare authored Jan 16, 2025
1 parent 689471c commit 8e47f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eodag/api/product/metadata_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -1326,8 +1326,8 @@ def format_query_params(
query_params[eodag_search_key] = formatted_query_param
else:
provider_search_key, provider_value = parts
query_params.setdefault(provider_search_key, []).append(
format_metadata(provider_value, product_type, **query_dict)
query_params[provider_search_key] = format_metadata(
provider_value, product_type, **query_dict
)
else:
query_params[provider_search_key] = user_input
Expand Down

0 comments on commit 8e47f11

Please sign in to comment.