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

fix bug in raw service

This commit is contained in:
dalgr 2018-02-12 21:18:13 +01:00
parent 0813dfbb70
commit 10f0807b9a

View File

@ -36,5 +36,6 @@ class Raw(Service):
streams.append(dashparse(self.options, self.http.request("get", self.url), self.url))
for stream in streams:
for n in list(stream.keys()):
yield stream[n]
if stream:
for n in list(stream.keys()):
yield stream[n]