mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
[webconsole] urldecode domain for registration string generator
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
d0c5732e16
commit
da20cae25c
|
@ -1281,7 +1281,7 @@ namespace http {
|
||||||
else if (cmd == HTTP_COMMAND_GET_REG_STRING)
|
else if (cmd == HTTP_COMMAND_GET_REG_STRING)
|
||||||
{
|
{
|
||||||
std::string b32 = params["b32"];
|
std::string b32 = params["b32"];
|
||||||
std::string name = params["name"];
|
std::string name = i2p::http::UrlDecode(params["name"]);
|
||||||
|
|
||||||
i2p::data::IdentHash ident;
|
i2p::data::IdentHash ident;
|
||||||
ident.FromBase32 (b32);
|
ident.FromBase32 (b32);
|
||||||
|
|
Loading…
Reference in a new issue