diff --git a/yt_dlp/extractor/stripchat.py b/yt_dlp/extractor/stripchat.py index 99eb2fbfc..7d6b17444 100644 --- a/yt_dlp/extractor/stripchat.py +++ b/yt_dlp/extractor/stripchat.py @@ -49,8 +49,9 @@ class StripchatIE(InfoExtractor): model_id = api_json.get('streamName') # Contains 'eu23', for example, with server '20' as the fallback - host_str = api_json.get('model', {}).get('broadcastServer', '') - host = ''.join([c for c in host_str if c.isdigit()]) or 20 + # host_str = api_json.get('model', {}).get('broadcastServer', '') + # host = ''.join([c for c in host_str if c.isdigit()]) or 20 + host = 20 if is_vr: base_url = f'https://media-hls.doppiocdn.net/b-hls-{host}/{model_id}_vr/{model_id}_vr'