Fix teachable course download

This commit is contained in:
ilpersi 2020-10-18 10:53:54 +02:00
parent 4eda10499e
commit c20b0e4fa7
1 changed files with 3 additions and 3 deletions

View File

@ -139,9 +139,9 @@ class TeachableIE(TeachableBaseIE):
@staticmethod
def _is_teachable(webpage):
return 'teachableTracker.linker:autoLink' in webpage and re.search(
r'<link[^>]+href=["\']https?://process\.fs\.teachablecdn\.com',
webpage)
return 'teachableTracker.linker:autoLink' in webpage and (
re.search(r'<link[^>]+href=["\']https?://process\.fs\.teachablecdn\.com', webpage) or
re.search(r'<img[^>]+src=["\']https?://process\.fs\.teachablecdn\.com', webpage))
@staticmethod
def _extract_url(webpage, source_url):