mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:44:15 +00:00
fix special case
This commit is contained in:
parent
05939a2bbc
commit
a183ca8661
2
HTTP.cpp
2
HTTP.cpp
@ -71,7 +71,7 @@ namespace http {
|
|||||||
bool URL::parse(const std::string& url) {
|
bool URL::parse(const std::string& url) {
|
||||||
std::size_t pos_p = 0; /* < current parse position */
|
std::size_t pos_p = 0; /* < current parse position */
|
||||||
std::size_t pos_c = 0; /* < work position */
|
std::size_t pos_c = 0; /* < work position */
|
||||||
if (url.at(0) == "/" && url.find("/http://") == url.begin()) {
|
if (url.at(0) == "/" && url.find("/http://") == 0) {
|
||||||
/* specical case */
|
/* specical case */
|
||||||
pos_p ++;
|
pos_p ++;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user