Fix crash on anime-ultime
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michel Roux 2020-05-16 20:38:03 +02:00
parent 7caace6b69
commit 91cd067352

View File

@ -34,8 +34,9 @@ class AnimeUltime(ConnectorCore):
if response['http_code'] == 200:
html = BeautifulSoup(response['output'], 'html.parser')
title = html.select('div.title')
player = html.select('div.AUVideoPlayer')
if 'Recherche' in title[0].string:
if 'Recherche' in title[0].decode_contents():
trs = html.select('table.jtable tr')
for i, tr in enumerate(trs):
@ -58,8 +59,7 @@ class AnimeUltime(ConnectorCore):
'date': parse_date(None),
'class': self.color if link_exist_in_db(href) else ''
})
else:
player = html.select('div.AUVideoPlayer')
elif len(player) > 0:
name = html.select('h1')
ani_type = html.select('div.titre')
href = '%s/file-0-1/%s' % (self.base_url, player[0]['data-serie'])