1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

discoveryplus: streams is a list and not a dict

This commit is contained in:
Johan Andersson 2021-05-18 20:54:19 +02:00
parent c9a606d306
commit 94ed271397

View File

@ -99,15 +99,15 @@ class Discoveryplus(Service):
httpobject=self.http,
output=self.output,
)
for n in list(streams.keys()):
if isinstance(streams[n], subtitle): # we get the subtitles from the hls playlist.
for stream in streams:
if isinstance(stream, subtitle): # we get the subtitles from the hls playlist.
if self.config.get("get_all_subtitles"):
yield streams[n]
yield stream
else:
if streams[n].subfix in country and country[streams[n].subfix] in self.domain:
yield streams[n]
if stream.subfix in country and country[stream.subfix] in self.domain:
yield stream
else:
yield streams[n]
yield stream
def _autoname(self, jsondata):
match = re.search("^([^/]+)/", jsondata["data"]["attributes"]["path"])