mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[viewster] Use tuple
This commit is contained in:
parent
7ce50a355c
commit
d0fed4ac02
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ def _real_extract(self, url):
|
||||||
entry_id = info.get('Id') or info['id']
|
entry_id = info.get('Id') or info['id']
|
||||||
|
|
||||||
# unfinished serie has no Type
|
# unfinished serie has no Type
|
||||||
if info.get('Type') in ['Serie', None]:
|
if info.get('Type') in ('Serie', None):
|
||||||
try:
|
try:
|
||||||
episodes = self._download_json(
|
episodes = self._download_json(
|
||||||
'https://public-api.viewster.com/series/%s/episodes' % entry_id,
|
'https://public-api.viewster.com/series/%s/episodes' % entry_id,
|
||||||
|
|
Loading…
Reference in a new issue