1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-29 15:14:13 +00:00

ignore comments

This commit is contained in:
orignal 2017-05-10 09:36:58 -04:00
parent 2173a9f246
commit e4cd1a465c

View File

@ -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);