Update Download.cpp
This commit is contained in:
parent
c6762826dc
commit
8ed849bf53
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user