Update yt_dlp/extractor/spankbang.py

Co-authored-by: Simon Sawicki <accounts@grub4k.xyz>
This commit is contained in:
INeed4000Bucks 2023-05-25 19:09:30 -07:00 committed by GitHub
parent e1e2f8ee9e
commit 2e3b852851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -131,8 +131,7 @@ class SpankBangIE(InfoExtractor):
og_url = self._search_regex(
r'<meta property="og:url" content="(.*?)"', webpage, 'og:url', default=None)
if og_url:
video_id = self._search_regex(
r'https://spankbang.com/([^/]+)/', og_url, 'video ID', default=None)
video_id = self._search_regex(r'https://spankbang.com/([^/]+)/', og_url, 'video ID', default=None)
info = self._search_json_ld(webpage, video_id, default={})