]> git.sesse.net Git - vlc/blobdiff - share/lua/sd/fmc.lua
Revert "Lua SD: let the user know we are working"
[vlc] / share / lua / sd / fmc.lua
index 7be1c8ea0ad5fa69f22baee7b8ede333e0997da8..830a022054fe051344e24e845f2f479e38891580 100644 (file)
@@ -26,7 +26,6 @@ function descriptor()
 end
 
 function main()
-    local loading = vlc.sd.add_item( {path="vlc://nop",title="Loading..."} )
     local tree = simplexml.parse_url("http://www.archive.org/download/freemusiccharts.songs/fmc.xml")
     for _, show_node in ipairs( tree.children ) do
         simplexml.add_name_maps( show_node )
@@ -53,5 +52,4 @@ function main()
         node:add_subitem( {title=show_node.children_map["date"][1].children[1] .. " MP3 Podcast",path=show_node.children_map["podcastmp3"][1].children[1]} )
         node:add_subitem( {title=show_node.children_map["date"][1].children[1] .. " OGG Podcast",path=show_node.children_map["podcastogg"][1].children[1]} )
     end
-    vlc.sd.remove_item( loading )
 end