Skip to content

Commit cdcf22a

Browse files
committed
Fix download for go.wetransfer.com links
wetransfer now (sometimes) returns short url form in https://go.wetransfer.com/ instead of https://we.tl/
1 parent dc531dc commit cdcf22a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

transferwee.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ def download_url(url: str) -> Optional[str]:
9090
"""
9191
logger.debug(f"Getting download URL of {url}")
9292
# Follow the redirect if we have a short URL
93-
if url.startswith("https://we.tl/"):
93+
if url.startswith("https://we.tl/") or url.startswith(
94+
"https://go.wetransfer.com/"
95+
):
9496
r = requests.head(
9597
url,
9698
allow_redirects=True,

0 commit comments

Comments
 (0)