Fix string comparison

This commit is contained in:
Phew
2026-01-12 22:39:48 +01:00
parent a848394748
commit 15ce889b92
+1 -1
View File
@@ -165,7 +165,7 @@ void ap_client_check(){
// you're starting a new line
currentLineIsBlank = true;
if (strstr(linebuf,"GET /?") > 0)
if (strstr(linebuf,"GET /?") != NULL)
{
String line = String(linebuf);