1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

efn: send the url to the playlist

This commit is contained in:
Johan Andersson 2015-09-01 00:36:27 +02:00
parent 96d2bfd529
commit 421057194e

View File

@ -18,7 +18,7 @@ class Efn(Service, OpenGraphThumbMixin):
log.error("Cant find video info")
return
streams = hlsparse(self.http.request("get", match.group(1)))
streams = hlsparse(match.group(1), self.http.request("get", match.group(1)))
if streams:
for n in list(streams.keys()):
yield HLS(copy.copy(options), streams[n], n)