mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-18 23:16:37 +02:00
ignore comments
This commit is contained in:
parent
2173a9f246
commit
e4cd1a465c
1 changed files with 4 additions and 0 deletions
|
@ -365,6 +365,10 @@ namespace client
|
|||
std::string name = s.substr(0, pos++);
|
||||
std::string addr = s.substr(pos);
|
||||
|
||||
size_t pos = s.find('#');
|
||||
if (pos != std::string::npos)
|
||||
std::string addr = addr.substr(pos); // remove comments
|
||||
|
||||
auto ident = std::make_shared<i2p::data::IdentityEx> ();
|
||||
if (!ident->FromBase64(addr)) {
|
||||
LogPrint (eLogError, "Addressbook: malformed address ", addr, " for ", name);
|
||||
|
|
Loading…
Add table
Reference in a new issue