Loosen tfa_results check

Can also return None as well as False, check for falsey values instead.
This commit is contained in:
Chad Phillips 2017-07-03 08:02:49 -07:00
parent b6c9fe4162
commit fc1282b3fe
1 changed files with 1 additions and 1 deletions

View File

@ -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)