[Instagram] Display more login errors (#1822)

Authored by: MinePlayersPE
pull/1842/head
MinePlayersPE 2021-11-28 19:29:55 +07:00 zatwierdzone przez GitHub
rodzic bf57cfa8b7
commit d298d33fe6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -63,6 +63,10 @@ class InstagramBaseIE(InfoExtractor):
if not login.get('authenticated'):
if login.get('message'):
raise ExtractorError(f'Unable to login: {login["message"]}')
elif login.get('user'):
raise ExtractorError('Unable to login: Sorry, your password was incorrect. Please double-check your password.', expected=True)
elif login.get('user') is False:
raise ExtractorError('Unable to login: The username you entered doesn\'t belong to an account. Please check your username and try again.', expected=True)
raise ExtractorError('Unable to login')
InstagramBaseIE._IS_LOGGED_IN = True