aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-12-27 00:18:37 +0700
committerSergey M․ <dstftw@gmail.com>2019-12-27 00:18:37 +0700
commitf8a12427a9ccdb8506be64c2b56eee7f8872ac3f (patch)
treeb7835beb510f9af9758936c322b71a1d34b73fab
parent7ea55819ac9fdd6f06f527cf3302ab550bcf3219 (diff)
downloadyoutube-dl-f8a12427a9ccdb8506be64c2b56eee7f8872ac3f.tar.xz
[teachable] Improve locked lessons detection (#23528)
-rw-r--r--youtube_dl/extractor/teachable.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/teachable.py b/youtube_dl/extractor/teachable.py
index 7d2e34b3b..b82414c3d 100644
--- a/youtube_dl/extractor/teachable.py
+++ b/youtube_dl/extractor/teachable.py
@@ -165,7 +165,10 @@ class TeachableIE(TeachableBaseIE):
if any(re.search(p, webpage) for p in (
r'class=["\']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')
title = self._og_search_title(webpage, default=None)