From 722185d3e33f85d8af1e1bc1f43fdb805f60cb73 Mon Sep 17 00:00:00 2001 From: Omar Date: Thu, 28 May 2026 09:54:45 +0300 Subject: [PATCH] Remove duplicate impersonation from line 468 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 10b9bd5..b4e2f64 100644 --- a/main.py +++ b/main.py @@ -465,7 +465,7 @@ async def get_scrape_url(store_url: str, session: AsyncSession) -> str: if not products_endpoint: try: - res = await session.get(base_url, impersonate="edge") + res = await session.get(base_url) # Use regex to find the .myshopify.com/products.json URL of the Shopify store in case the normal /products.json is blocked. public_store_name = list(set(re.findall(pattern=r'\b([a-zA-Z0-9-]+)\.myshopify\.com\b', string=res.text)))[0]