mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 08:14:15 +00:00
fixed typo
This commit is contained in:
parent
10d6cd9896
commit
0edc149ecc
@ -818,7 +818,7 @@ namespace http {
|
|||||||
url.parse_query(params);
|
url.parse_query(params);
|
||||||
|
|
||||||
std::string token = params["token"];
|
std::string token = params["token"];
|
||||||
if (!token.empty () || m_Tokens.find (std::stoi (token)) == m_Tokens.end ())
|
if (token.empty () || m_Tokens.find (std::stoi (token)) == m_Tokens.end ())
|
||||||
{
|
{
|
||||||
ShowError(s, "Invalid token");
|
ShowError(s, "Invalid token");
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user