Index: scripts/.modules/script.module.xbmcaddon/lib/xbmcaddon.py =================================================================== --- scripts/.modules/script.module.xbmcaddon/lib/xbmcaddon.py (revision 32597) +++ scripts/.modules/script.module.xbmcaddon/lib/xbmcaddon.py (working copy) @@ -43,7 +43,9 @@ # plugin.music|video|etc.something addons if len( parts ) == 3 and parts[ 0 ] == "plugin": - locations.append("plugin://%s/%s" % ( parts[ 1 ], parts[ 2 ] )) + pluginType = parts[ 1 ].replace("audio", "music") + pluginName = parts[ 2 ] + locations.append("plugin://%s/%s" % ( pluginType, pluginName )) xbmc.log( "xbmcaddon: locations = " + str(locations), xbmc.LOGDEBUG )