Fix xvideos.py

I didn't catch that the conditional check got reversed by the suggested change from Pukkandan. This fixes that regression.
pull/9834/head
Jake Finley 4 weeks ago committed by GitHub
parent 6b95b0cf5f
commit dbd513d38c
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 id_.isdigit() else ""}{id_}/_', XVideosIE, id_)
return self.url_result(f'https://{domain}/video{"" if id_.isdigit() else "."}{id_}/_', XVideosIE, id_)

Loading…
Cancel
Save