Missing replace assigment (the change was not included into the commit by mistake)

This commit is contained in:
Alejandro Perez Lopez
2023-09-30 18:19:56 +02:00
parent 87e893dcc8
commit 516a2a9f3a

View File

@@ -62,7 +62,7 @@ def extract_amazon_url_with_referer(text: str):
product_code = product_code_regex_result.group(0) product_code = product_code_regex_result.group(0)
if vendor_and_smid_result: if vendor_and_smid_result:
extra_params = (''.join(str(w) for w in vendor_and_smid_result if w is not None)) extra_params = (''.join(str(w) for w in vendor_and_smid_result if w is not None))
extra_params.replace('?','&') extra_params = extra_params.replace('?','&')
return helpers.new_refer_url(product_code, extra_params) return helpers.new_refer_url(product_code, extra_params)