Browse Source

Merge pull request #26 from borromeotlhs/patch-6

Update file_list.lua
Marcos 8 years ago
parent
commit
cac11d9a1a
1 changed files with 2 additions and 3 deletions
  1. 2 3
      http/file_list.lua

+ 2 - 3
http/file_list.lua

@@ -5,12 +5,11 @@ return function (connection, args)
    connection:send('<h1>Server File Listing</h1>')
    connection:send("<ul>\n")
 
-   local l = file.list()
-   for name, size in pairs(l) do
+   for name, size in pairs(file.list()) do
 
       local isHttpFile = string.match(name, "(http/)") ~= nil
-      local url = string.match(name, ".*/(.*)")
       if isHttpFile then
+         local url = string.match(name, ".*/(.*)")
          connection:send('   <li><a href="' .. url .. '">' .. url .. "</a> (" .. size .. " bytes)</li>\n")
          -- this list could be very long, so we'll yield in order to avoid overflowing the send buffer.
          coroutine.yield()