From 72b21a61ae11f35475c8bad3510ce427e984a6c0 Mon Sep 17 00:00:00 2001 From: Lionello Lunesu Date: Sun, 4 Oct 2015 00:02:40 +0800 Subject: [PATCH] Fixed syntax error on line 92 --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9456096..8b54dd5 100644 --- a/init.lua +++ b/init.lua @@ -89,7 +89,7 @@ if (wifi.getmode() == wifi.STATION) or (wifi.getmode() == wifi.STATIONAP) then end -- Uncomment to automatically start the server in port 80 -if (not not wifi.sta.getip()) or (not not wifi.ap.getip()l) then +if (not not wifi.sta.getip()) or (not not wifi.ap.getip()) then dofile("httpserver.lc")(80) end