projects
/
vpproxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1074f7e
)
Исправлена ошибка в генерации список в случае записей с пустыми именами.
author
Roman Bazalevsky
<rvb@rvb.name>
Thu, 22 Oct 2015 10:32:00 +0000
(13:32 +0300)
committer
Roman Bazalevsky
<rvb@rvb.name>
Thu, 22 Oct 2015 10:32:00 +0000
(13:32 +0300)
plugins/m3u_plugin.py
patch
|
blob
|
history
diff --git
a/plugins/m3u_plugin.py
b/plugins/m3u_plugin.py
index 00a6193f674184bdcb777c7b28ef04f6a176d846..90f529f55a85965c4004b74c19920a1cbe2f73a2 100644
(file)
--- a/
plugins/m3u_plugin.py
+++ b/
plugins/m3u_plugin.py
@@
-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)