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
", "text/html");
+ response.set_content("wrong password lmao
", "text/html");
return;
}
} else {