mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-06 06:45:00 +01:00
[ie/vimeo] Fix login error handling (#14280)
Closes #14279 Authored by: bashonly
This commit is contained in:
parent
a1c98226a4
commit
679587dac7
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ class VimeoBaseInfoExtractor(InfoExtractor):
|
|||
'Referer': self._LOGIN_URL,
|
||||
})
|
||||
except ExtractorError as e:
|
||||
if isinstance(e.cause, HTTPError) and e.cause.status in (405, 418):
|
||||
if isinstance(e.cause, HTTPError) and e.cause.status in (404, 405, 418):
|
||||
raise ExtractorError(
|
||||
'Unable to log in: bad username or password',
|
||||
expected=True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue