mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 06:49:29 +01:00
[teachable] Improve locked lessons detection (#23528)
This commit is contained in:
parent
7ea55819ac
commit
f8a12427a9
@ -165,7 +165,10 @@ def _real_extract(self, url):
|
|||||||
if any(re.search(p, webpage) for p in (
|
if any(re.search(p, webpage) for p in (
|
||||||
r'class=["\']lecture-contents-locked',
|
r'class=["\']lecture-contents-locked',
|
||||||
r'>\s*Lecture contents locked',
|
r'>\s*Lecture contents locked',
|
||||||
r'id=["\']lecture-locked')):
|
r'id=["\']lecture-locked',
|
||||||
|
# https://academy.tailoredtutors.co.uk/courses/108779/lectures/1955313
|
||||||
|
r'class=["\'](?:inner-)?lesson-locked',
|
||||||
|
r'>LESSON LOCKED<')):
|
||||||
self.raise_login_required('Lecture contents locked')
|
self.raise_login_required('Lecture contents locked')
|
||||||
|
|
||||||
title = self._og_search_title(webpage, default=None)
|
title = self._og_search_title(webpage, default=None)
|
||||||
|
Loading…
Reference in New Issue
Block a user