This commit is contained in:
Kovid Goyal 2024-09-25 16:50:51 +05:30
parent f455da8442
commit 31be5f3708
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -223,6 +223,7 @@ def resolve_bing_wrapper_page(url, br, log):
if m is None: if m is None:
log(f'Failed to resolve bing wrapper page for url: {url}') log(f'Failed to resolve bing wrapper page for url: {url}')
return url return url
log(f'Resolved bing wrapped URL: {url} to {m.group(1)}')
return m.group(1) return m.group(1)