Skip to content

Commit 7b6d354

Browse files
committed
format
1 parent 3cd60cc commit 7b6d354

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/src/src.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ void sendResponse(String request, EthernetClient client) {
130130

131131
// Send file to client
132132
if (request == "") {
133-
#ifdef WEBSITE_ON_SD_CARD
133+
#ifdef WEBSITE_ON_SD_CARD
134134
request = "index.htm";
135135
client.println("Content-Type: text/html\n\r\n\r");
136136
File webFile = SD.open(request);
@@ -140,10 +140,10 @@ void sendResponse(String request, EthernetClient client) {
140140
}
141141
webFile.close();
142142
}
143-
#endif
144-
#ifdef WEBSITE_ON_EXTERNAL_WEBSERVER
143+
#endif
144+
#ifdef WEBSITE_ON_EXTERNAL_WEBSERVER
145145
client.println("HTTP/1.1 404 Not Found\n\r");
146-
#endif
146+
#endif
147147
}
148148
// Button actions and status request
149149
else {

0 commit comments

Comments
 (0)