archive id bugfix

This commit is contained in:
AndroKev 2018-03-20 18:03:59 +01:00
parent e02ed3728c
commit c796466c05

View File

@ -185,8 +185,9 @@ class TVNowListIE(TVNowBaseIE):
seo_url = info.get('seoUrl')
if not seo_url:
continue
entries.append(self.url_result(
base_url + seo_url + '/player', 'TVNow', str(info.get('id'))))
base_url + seo_url + '/player', 'TVNow', str(info.get('id', seo_url))))
return self.playlist_result(
entries, compat_str(season.get('id') or season_id), title)