We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc531dc commit cdcf22aCopy full SHA for cdcf22a
transferwee.py
@@ -90,7 +90,9 @@ def download_url(url: str) -> Optional[str]:
90
"""
91
logger.debug(f"Getting download URL of {url}")
92
# Follow the redirect if we have a short URL
93
- if url.startswith("https://we.tl/"):
+ if url.startswith("https://we.tl/") or url.startswith(
94
+ "https://go.wetransfer.com/"
95
+ ):
96
r = requests.head(
97
url,
98
allow_redirects=True,
0 commit comments