X-Git-Url: https://git.rvb.name/vpproxy.git/blobdiff_plain/21abfc4eb5f6f49ef263d0c1961fb1dff19f337c..1074f7e8729c2ff065d73960c5450c9356c2fd11:/plugins/m3u_plugin.py diff --git a/plugins/m3u_plugin.py b/plugins/m3u_plugin.py index fc4d3e3..00a6193 100644 --- a/plugins/m3u_plugin.py +++ b/plugins/m3u_plugin.py @@ -104,7 +104,6 @@ class M3u(VPProxyPlugin): elif self.splitted_path[1]=="play": channel=self.splitted_path[len(self.splitted_path)-1] channel=urllib.unquote(channel).decode('utf-8') - print channel if len(self.splitted_path)<=4: prefix="get" elif len(self.splitted_path)==5: @@ -117,10 +116,8 @@ class M3u(VPProxyPlugin): for record in playlist: if record.title.decode('utf-8').replace('/','')==channel: url=record.path.decode('utf-8') - print url if url: redirect='/'+prefix+'/'+url - print redirect connection.send_response(302) connection.send_header('Location', redirect) connection.end_headers() @@ -147,7 +144,8 @@ class M3u(VPProxyPlugin): exported = "" for record in playlist: - exported = exported + "" + record.title.decode('utf-8').replace('/','') + "\n" + if record.title: + exported = exported + "" + record.title.decode('utf-8').replace('/','') + "\n" else: @@ -160,8 +158,9 @@ class M3u(VPProxyPlugin): playlistgen.addItem(channel) exported = playlistgen.exportm3u(hostport,prefix) - + exported = exported.encode('utf-8') + connection.wfile.write(exported) def getparam(self, key):