Fixed product fetcher

This commit is contained in:
2022-05-10 14:00:41 +02:00
parent 5e3e41af78
commit 41e4fef460
4 changed files with 75 additions and 20 deletions

View File

@@ -497,7 +497,7 @@ def receive_product_data(message):
product_src = fetch_url('https://www.amazon.de/dp/' + product_id)
title = get_title(product_src)
image_url = get_image(product_src, get_title(product_src))
image_url = get_image(product_src)
price = get_price(product_src)
description = get_description(product_src)