mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:17:07 -05:00 
			
		
		
		
	[animeondemand] Relax login error regex
This commit is contained in:
		@@ -85,8 +85,8 @@ class AnimeOnDemandIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
        if all(p not in response for p in ('>Logout<', 'href="/users/sign_out"')):
 | 
			
		||||
            error = self._search_regex(
 | 
			
		||||
                r'<p class="alert alert-danger">(.+?)</p>',
 | 
			
		||||
                response, 'error', default=None)
 | 
			
		||||
                r'<p[^>]+\bclass=(["\'])(?:(?!\1).)*\balert\s(?:(?!\1).)*\1[^>]*>(?P<error>.+?)</p>',
 | 
			
		||||
                response, 'error', default=None, group='error')
 | 
			
		||||
            if error:
 | 
			
		||||
                raise ExtractorError('Unable to login: %s' % error, expected=True)
 | 
			
		||||
            raise ExtractorError('Unable to log in')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user