mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-30 07:28:19 +01:00
Add one more case when account is locked
This commit is contained in:
parent
c22e4bd29f
commit
4916a77720
|
@ -441,6 +441,8 @@ def _extract_from_url(self, url, video_id):
|
|||
raise ExtractorError('Login account is suspended.', expected=True)
|
||||
if 'send a code to confirm the mobile number you give us' in webpage:
|
||||
raise ExtractorError('Mobile number checkpoint for logged in user.', expected=True)
|
||||
if 'your account has been locked' in webpage:
|
||||
raise ExtractorError('Account is locked.', expected=True)
|
||||
|
||||
userinfo = get_first(sjs_data, (
|
||||
'require', ..., ..., ..., '__bbox', 'define',
|
||||
|
|
Loading…
Reference in New Issue
Block a user