Fix xvideos.py

I didn't catch that the conditional check got reversed by the suggested change from Pukkandan. This fixes that regression.
This commit is contained in:
Jake Finley 2024-05-12 21:55:31 +03:00 committed by GitHub
parent 6b95b0cf5f
commit dbd513d38c
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 id_.isdigit() else ""}{id_}/_', XVideosIE, id_)
return self.url_result(f'https://{domain}/video{"" if id_.isdigit() else "."}{id_}/_', XVideosIE, id_)