Merge pull request #18 from borromeotlhs/patch-1

De-duplicate wifi.sta.getip() call
This commit is contained in:
Marcos 2015-05-02 07:28:46 -05:00
commit 970906a89a

View File

@ -79,8 +79,9 @@ return function (port)
end
)
local ip = nil
if wifi.sta.getip() then ip = wifi.sta.getip() else ip = wifi.ap.getip() end
-- false and nil evaluate as false
local ip = wifi.sta.getip()
if not ip then ip = wifi.ap.getip() end
print("nodemcu-httpserver running at http://" .. ip .. ":" .. port)
return s