Update yt_dlp/extractor/xvideos.py

Commit suggested change from pukkandan

Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
pull/9834/head
Jake Finley 4 weeks ago committed by GitHub
parent 89c0faa957
commit 6b95b0cf5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -222,4 +222,4 @@ class XVideosQuickiesIE(InfoExtractor):
def _real_extract(self, url):
domain, id_ = self._match_valid_url(url).group('domain', 'id')
return self.url_result(f'https://{domain}/video{"." if int_or_none(id_) == None else ""}{id_}/_', XVideosIE, id_)
return self.url_result(f'https://{domain}/video{"." if id_.isdigit() else ""}{id_}/_', XVideosIE, id_)

Loading…
Cancel
Save