mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09: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:
parent
6bf6962062
commit
6b445558ff
@ -191,6 +191,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
|
|||||||
def _real_initialize(self):
|
def _real_initialize(self):
|
||||||
if self._downloader is None:
|
if self._downloader is None:
|
||||||
return
|
return
|
||||||
|
if self._get_login_info()[0] is not None:
|
||||||
if not self._set_language():
|
if not self._set_language():
|
||||||
return
|
return
|
||||||
if not self._login():
|
if not self._login():
|
||||||
|
Loading…
Reference in New Issue
Block a user