diff --git a/share/lua/intf/modules/httprequests.lua b/share/lua/intf/modules/httprequests.lua index bbef5695815854ba41be7f325daa011fda491df9..a22e833c9b057038916fa9b4b136f8fdcf2402c1 100644 --- a/share/lua/intf/modules/httprequests.lua +++ b/share/lua/intf/modules/httprequests.lua @@ -353,7 +353,11 @@ getbrowsetable = function () if dir then if dir == "~" then dir = vlc.misc.homedir() end - dir = common.realpath(dir.."/") + -- FIXME: hack for Win32 drive list + if dir~="" then + dir = common.realpath(dir.."/") + end + local d = vlc.net.opendir(dir) table.sort(d)