mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-07-31 15:08:42 -04:00
Strip SKIP_PREFIX for SITE_ALTS only (#452)
Domain prefixes (www, mobile, m) are now striped for site alternatives only.
This commit is contained in:
parent
2dd86fcf97
commit
f18400b1f1
@ -78,11 +78,10 @@ def get_site_alt(link: str) -> str:
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
link = link.replace(site_key, SITE_ALTS[site_key])
|
link = link.replace(site_key, SITE_ALTS[site_key])
|
||||||
|
for prefix in SKIP_PREFIX:
|
||||||
|
link = link.replace(prefix, '//')
|
||||||
break
|
break
|
||||||
|
|
||||||
for prefix in SKIP_PREFIX:
|
|
||||||
link = link.replace(prefix, '//')
|
|
||||||
|
|
||||||
return link
|
return link
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user