1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-05-03 04:03:30 +00:00

[teachable] Improve embed detection (closes #26923)

This commit is contained in:
Sergey M․
2020-12-27 22:57:50 +07:00
parent 4c7a4dbc4d
commit 6f2eaaf73d
+1 -1
View File
@@ -140,7 +140,7 @@ 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',
r'<link[^>]+href=["\']https?://(?:process\.fs|assets)\.teachablecdn\.com',
webpage)
@staticmethod