mirror of
https://gitlab.com/jeancf/twoot.git
synced 2025-05-05 11:03:57 +00:00
Corrected urlunparse() call
This commit is contained in:
parent
f92d025e5c
commit
8aa9bb9ae0
6
twoot.py
6
twoot.py
@ -177,11 +177,11 @@ def substitute_source(orig_url):
|
|||||||
|
|
||||||
dest_url = urlunparse([
|
dest_url = urlunparse([
|
||||||
parsed_url.scheme,
|
parsed_url.scheme,
|
||||||
_substitute_source(parsed_url.netloc),
|
domain,
|
||||||
parsed_url.path,
|
parsed_url.path,
|
||||||
parsed_url.params,
|
parsed_url.params,
|
||||||
_remove_trackers_query(parsed_url.query),
|
parsed_url.query,
|
||||||
_remove_trackers_fragment(parsed_url.fragment)
|
parsed_url.fragment
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user