Lane difficulty added

This commit is contained in:
Carsten Graf
2025-09-11 13:56:07 +02:00
parent 3aac843736
commit 4f0fc68d41
7 changed files with 279 additions and 1 deletions

View File

@@ -78,7 +78,7 @@ UserData checkUser(const String &uid) {
userData.firstname = responseDoc["firstname"].as<String>();
userData.lastname = responseDoc["lastname"].as<String>();
userData.alter = responseDoc["alter"] | 0;
userData.exists = true;
userData.exists = responseDoc["exists"] | true;
}
} else {
Serial.printf("User check failed, HTTP code: %d\n", httpCode);