Исправлена ошибка в генерации список в случае записей с пустыми именами.
authorRoman Bazalevsky <rvb@rvb.name>
Thu, 22 Oct 2015 10:32:00 +0000 (13:32 +0300)
committerRoman Bazalevsky <rvb@rvb.name>
Thu, 22 Oct 2015 10:32:00 +0000 (13:32 +0300)
plugins/m3u_plugin.py

index 00a6193f674184bdcb777c7b28ef04f6a176d846..90f529f55a85965c4004b74c19920a1cbe2f73a2 100644 (file)
@@ -152,10 +152,11 @@ class M3u(VPProxyPlugin):
             playlistgen = PlaylistGenerator()
 
             for record in playlist:
-                channel=dict()
-                channel['name']=record.title.decode('utf-8')
-                channel['url']=record.path.decode('utf-8')            
-                playlistgen.addItem(channel)
+                if record.title:
+                    channel=dict()
+                    channel['name']=record.title.decode('utf-8')
+                    channel['url']=record.path.decode('utf-8')            
+                    playlistgen.addItem(channel)
 
             exported = playlistgen.exportm3u(hostport,prefix)