Merge pull request #1273 from ynput/bugfix/colorspace-fallback-type-error

Fixes: Uses correct fallback data key
This commit is contained in:
Jakub Ježek 2025-05-14 16:47:36 +02:00 committed by GitHub
commit fcd6bfdf0f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -834,7 +834,7 @@ def _get_global_config_data(
if not product_entities_by_name:
# in case no product was found we need to use fallback
fallback_type = fallback_data["type"]
fallback_type = fallback_data["fallback_type"]
return _get_config_path_from_profile_data(
fallback_data, fallback_type, template_data
)