Update Download.cpp

This commit is contained in:
Edo 2024-01-20 14:10:58 +01:00 committed by GitHub
parent c6762826dc
commit 8ed849bf53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -455,7 +455,7 @@ namespace Components
if (!messageOverride.empty()) if (!messageOverride.empty())
{ {
msg = message; msg = messageOverride;
} }
mg_http_reply(connection, code, "Content-Type: text/plain\r\n", "%s", msg.c_str()); mg_http_reply(connection, code, "Content-Type: text/plain\r\n", "%s", msg.c_str());
@ -478,14 +478,14 @@ namespace Components
if (len <= 0) if (len <= 0)
{ {
ReplyError(connection, 403, "Password Required"); ReplyError(c, 403, "Password Required");
return false; return false;
} }
const auto password = std::string(buffer, len); const auto password = std::string(buffer, len);
if (password != Utils::String::DumpHex(Utils::Cryptography::SHA256::Compute(g_password), "")) if (password != Utils::String::DumpHex(Utils::Cryptography::SHA256::Compute(g_password), ""))
{ {
ReplyError(connection, 403, "Invalid Password"); ReplyError(c, 403, "Invalid Password");
return false; return false;
} }