diff options
| author | Sergey M․ <dstftw@gmail.com> | 2019-12-27 00:18:37 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2019-12-27 00:18:37 +0700 | 
| commit | f8a12427a9ccdb8506be64c2b56eee7f8872ac3f (patch) | |
| tree | b7835beb510f9af9758936c322b71a1d34b73fab | |
| parent | 7ea55819ac9fdd6f06f527cf3302ab550bcf3219 (diff) | |
[teachable] Improve locked lessons detection (#23528)
| -rw-r--r-- | youtube_dl/extractor/teachable.py | 5 | 
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) | 
