mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:20:47 +00:00 
			
		
		
		
	[youtube] Only set language when necessary
We only need to set the language when we are using a login; otherwise it will always be English.
This commit is contained in:
		@@ -191,8 +191,9 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
 | 
			
		||||
    def _real_initialize(self):
 | 
			
		||||
        if self._downloader is None:
 | 
			
		||||
            return
 | 
			
		||||
        if not self._set_language():
 | 
			
		||||
            return
 | 
			
		||||
        if self._get_login_info()[0] is not None:
 | 
			
		||||
            if not self._set_language():
 | 
			
		||||
                return
 | 
			
		||||
        if not self._login():
 | 
			
		||||
            return
 | 
			
		||||
        self._confirm_age()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user