mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-11-24 18:36:16 +00:00
Price tracker - fix for sites that supply an empty additional price (#2758)
This commit is contained in:
@@ -40,7 +40,7 @@ def _deduplicate_prices(data):
|
|||||||
|
|
||||||
if isinstance(datum.value, list):
|
if isinstance(datum.value, list):
|
||||||
# Process each item in the list
|
# Process each item in the list
|
||||||
normalized_value = set([float(re.sub(r'[^\d.]', '', str(item))) for item in datum.value])
|
normalized_value = set([float(re.sub(r'[^\d.]', '', str(item))) for item in datum.value if str(item).strip()])
|
||||||
unique_data.update(normalized_value)
|
unique_data.update(normalized_value)
|
||||||
else:
|
else:
|
||||||
# Process single value
|
# Process single value
|
||||||
|
|||||||
Reference in New Issue
Block a user