Update yt_dlp/extractor/xvideos.py

Commit suggested change from pukkandan

Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
This commit is contained in:
Jake Finley 2024-05-12 21:50:16 +03:00 committed by GitHub
parent 89c0faa957
commit 6b95b0cf5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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_)