mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
[http] keep query even if it was empty (closes #1844)
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
4fae7b8d65
commit
b31f52e332
|
@ -160,6 +160,7 @@ namespace http
|
|||
return true;
|
||||
} else if (url.at(pos_c) == '?') {
|
||||
/* found query part */
|
||||
hasquery = true;
|
||||
path = url.substr(pos_p, pos_c - pos_p);
|
||||
pos_p = pos_c + 1;
|
||||
pos_c = url.find('#', pos_p);
|
||||
|
@ -218,8 +219,10 @@ namespace http
|
|||
}
|
||||
}
|
||||
out += path;
|
||||
if (hasquery) // add query even if it was empty
|
||||
out += "?";
|
||||
if (query != "")
|
||||
out += "?" + query;
|
||||
out += query;
|
||||
if (frag != "")
|
||||
out += "#" + frag;
|
||||
return out;
|
||||
|
|
|
@ -33,6 +33,7 @@ namespace http
|
|||
std::string host;
|
||||
unsigned short int port;
|
||||
std::string path;
|
||||
bool hasquery;
|
||||
std::string query;
|
||||
std::string frag;
|
||||
|
||||
|
|
Loading…
Reference in a new issue