mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 16:26:23 +00:00
Loosen tfa_results check
Can also return None as well as False, check for falsey values instead.
This commit is contained in:
parent
b6c9fe4162
commit
fc1282b3fe
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
|
|||
self._TFA_URL.format(tl), tfa_req,
|
||||
'Submitting TFA code', 'Unable to submit TFA code')
|
||||
|
||||
if tfa_results is False:
|
||||
if not tfa_results:
|
||||
return False
|
||||
|
||||
tfa_res = try_get(tfa_results, lambda x: x[0][5], list)
|
||||
|
|
Loading…
Reference in a new issue