Fix bad internal redirection for google links (#850)

pull/857/head
João 2 years ago committed by GitHub
parent 6bb9c8448b
commit 1aad47f2af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -454,8 +454,11 @@ class Filter:
if any(url in link_netloc for url in unsupported_g_pages):
# FIXME: The "Shopping" tab requires further filtering (see #136)
# Temporarily removing all links to that tab for now.
# Replaces the /url google unsupported link to the direct url
link['href'] = link_netloc
parent = link.parent
if 'google.com/preferences?hl=' in link_netloc:
# Handle case where a search is performed in a different
# language than what is configured. This usually returns a

Loading…
Cancel
Save