Fix string comparison

This commit is contained in:
Phew
2025-12-20 10:30:49 +01:00
parent a848394748
commit 15ce889b92

View File

@@ -165,7 +165,7 @@ void ap_client_check(){
// you're starting a new line // you're starting a new line
currentLineIsBlank = true; currentLineIsBlank = true;
if (strstr(linebuf,"GET /?") > 0) if (strstr(linebuf,"GET /?") != NULL)
{ {
String line = String(linebuf); String line = String(linebuf);