diff --git a/yt_dlp/extractor/myfreecams.py b/yt_dlp/extractor/myfreecams.py index 1b802c290e..c6817eeb39 100644 --- a/yt_dlp/extractor/myfreecams.py +++ b/yt_dlp/extractor/myfreecams.py @@ -1,5 +1,5 @@ from .common import InfoExtractor -from ..utils import ExtractorError +from ..utils import ExtractorError, UserNotLive class MyFreeCamsIE(InfoExtractor): @@ -87,7 +87,7 @@ def _real_extract(self, url): params = self.get_required_params(webpage) if not params['sid']: - raise ExtractorError('Model offline') + raise UserNotLive('Model offline') return { 'id': video_id,