mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	@@ -2,7 +2,7 @@ import functools
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    ExtractorError,
 | 
					    UserNotLive,
 | 
				
			||||||
    float_or_none,
 | 
					    float_or_none,
 | 
				
			||||||
    int_or_none,
 | 
					    int_or_none,
 | 
				
			||||||
    parse_iso8601,
 | 
					    parse_iso8601,
 | 
				
			||||||
@@ -40,7 +40,7 @@ class CHZZKLiveIE(InfoExtractor):
 | 
				
			|||||||
            note='Downloading channel info', errnote='Unable to download channel info')['content']
 | 
					            note='Downloading channel info', errnote='Unable to download channel info')['content']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if live_detail.get('status') == 'CLOSE':
 | 
					        if live_detail.get('status') == 'CLOSE':
 | 
				
			||||||
            raise ExtractorError('The channel is not currently live', expected=True)
 | 
					            raise UserNotLive(video_id=channel_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        live_playback = self._parse_json(live_detail['livePlaybackJson'], channel_id)
 | 
					        live_playback = self._parse_json(live_detail['livePlaybackJson'], channel_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user