mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[generic] Fix infinite recursion for twitter:player URLs (closes #14339)
This commit is contained in:
parent
db96252831
commit
02d01e15f1
@ -2973,7 +2973,7 @@ def filter_video(urls):
|
||||
# be supported by youtube-dl thus this is checked the very last (see
|
||||
# https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
|
||||
embed_url = self._html_search_meta('twitter:player', webpage, default=None)
|
||||
if embed_url:
|
||||
if embed_url and embed_url != url:
|
||||
return self.url_result(embed_url)
|
||||
|
||||
if not found:
|
||||
|
Loading…
Reference in New Issue
Block a user