diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-18 05:11:47 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-18 05:16:08 +0530 |
commit | aedaa455d9874f14662023f21b254168ecd55579 (patch) | |
tree | 583d6346ac2ed974dfac47e9861f814390121673 /yt_dlp/extractor/dropout.py | |
parent | d6bf1161db0aa316229c0bc79352917d27fafa09 (diff) |
[vimeo] Fix extractors
Closes #3037, Closes #2858, Closes #2880, Closes #3712
May also fix #3602, #3360
Diffstat (limited to 'yt_dlp/extractor/dropout.py')
-rw-r--r-- | yt_dlp/extractor/dropout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/dropout.py b/yt_dlp/extractor/dropout.py index 475825eb8..096216418 100644 --- a/yt_dlp/extractor/dropout.py +++ b/yt_dlp/extractor/dropout.py @@ -137,7 +137,7 @@ class DropoutIE(InfoExtractor): return { '_type': 'url_transparent', 'ie_key': VHXEmbedIE.ie_key(), - 'url': embed_url, + 'url': VHXEmbedIE._smuggle_referrer(embed_url, 'https://www.dropout.tv'), 'id': self._search_regex(r'embed\.vhx\.tv/videos/(.+?)\?', embed_url, 'id'), 'display_id': display_id, 'title': title, |