after 1 min of usage i found at least 2 issues...

attaching a patch for one of them (try entering the trance genre..)
second one is non-escaped xml entities (see e.g. the top40 genre)
diff --git a/plugin.audio.icecast/default.py b/plugin.audio.icecast/default.py
index 6970b39..84392ea 100644
--- a/plugin.audio.icecast/default.py
+++ b/plugin.audio.icecast/default.py
@@ -133,7 +133,11 @@ def addLink(server_name, listen_url, bitrate):
   ok = True
   u = "%s?play=%s" % (sys.argv[0], listen_url,)
   liz = xbmcgui.ListItem(server_name, iconImage="DefaultVideo.png", thumbnailImage="")
-  liz.setInfo( type="Music", infoLabels={ "Title": server_name,"Size": int(bitrate)} )
+  try: 
+    bit = int(bitrate)
+  except:
+    bit = 0
+  liz.setInfo( type="Music", infoLabels={ "Title": server_name,"Size": bit} )
   liz.setProperty("IsPlayable","false");
   ok = xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=liz,isFolder=False)
   return ok
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to