Skip to content

Commit

Permalink
[webconsole] urldecode domain for registration string generator
Browse files Browse the repository at this point in the history
Signed-off-by: R4SAS <r4sas@i2pmail.org>
  • Loading branch information
r4sas committed Jun 26, 2021
1 parent d0c5732 commit da20cae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/HTTPServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ namespace http {
else if (cmd == HTTP_COMMAND_GET_REG_STRING)
{
std::string b32 = params["b32"];
std::string name = params["name"];
std::string name = i2p::http::UrlDecode(params["name"]);

i2p::data::IdentHash ident;
ident.FromBase32 (b32);
Expand Down

0 comments on commit da20cae

Please sign in to comment.