diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2023-04-16 12:01:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-16 17:01:19 +0000 |
commit | ea0570820336a0fe9c3b530d1b0d1e59313274f4 (patch) | |
tree | 85f716ab7d430d3333581e631d7a0d2fa68fd9be | |
parent | 9874e82b5a61582169300bea561b3e8899ad1ef7 (diff) |
[extractor/adobepass] Handle `Charter_Direct` MSO as `Spectrum` (#6824)
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/adobepass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/adobepass.py b/yt_dlp/extractor/adobepass.py index e5944f714..68a970f68 100644 --- a/yt_dlp/extractor/adobepass.py +++ b/yt_dlp/extractor/adobepass.py @@ -1573,7 +1573,7 @@ class AdobePassIE(InfoExtractor): # XXX: Conventionally, base classes should en }), headers={ 'Content-Type': 'application/x-www-form-urlencoded' }) - elif mso_id == 'Spectrum': + elif mso_id in ('Spectrum', 'Charter_Direct'): # Spectrum's login for is dynamically loaded via JS so we need to hardcode the flow # as a one-off implementation. provider_redirect_page, urlh = provider_redirect_page_res |