From c6a0e91e7ed002388dcf3bd4fffab9ffc5011717 Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Tue, 21 Jul 2026 13:11:20 +1000 Subject: [PATCH] fix --- server/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main.cpp b/server/src/main.cpp index 4387a43..1ea4424 100644 --- a/server/src/main.cpp +++ b/server/src/main.cpp @@ -90,7 +90,7 @@ int main() { if (user.has_value()) { if (!bcrypt::validatePassword(password, user->passwordHash)) { response.status = 401; - response.set_content("

wrong password lmao

your stupid lol", "text/html"); + response.set_content("

wrong password lmao

your stupid lol", "text/html"); return; } } else {