Browse Source

Merge pull request #79 from stephanMettler/master

Update httpserver.lua
Marcos 7 years ago
parent
commit
90cb4e47aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      httpserver.lua

+ 1 - 1
httpserver.lua

@@ -139,7 +139,7 @@ return function (port)
                if connectionThreadStatus == "suspended" then
                   -- Not finished sending file, resume.
                   local status, err = coroutine.resume(connectionThread)
-                  if not status then log(getpeer(), "Error: " .. err) end
+                  if not status then log(connection:getpeer(), "Error: " .. err) end
                elseif connectionThreadStatus == "dead" then
                   -- We're done sending file.
                   connection:close()