Index: src/squeezeplay/share/jive/Applet.lua =================================================================== --- src/squeezeplay/share/jive/Applet.lua (revision 7862) +++ src/squeezeplay/share/jive/Applet.lua (working copy) @@ -100,7 +100,7 @@ local function dirIter(self, path) - local rpath = "applets/" .. self._entry.appletName .. "/" .. path .. "/" + local rpath = "applets\\" .. self._entry.appletName .. "\\" .. path for dir in package.path:gmatch("([^;]*)%?[^;]*;") do dir = dir .. rpath @@ -108,7 +108,7 @@ if mode == "directory" then for entry in lfs.dir(dir) do if entry ~= "." and entry ~= ".." and entry ~= ".svn" then - coroutine.yield(rpath .. entry) + coroutine.yield(rpath.. '/' .. entry) end end end