[oauth] Fixed bug with invalid token (& was included in some cases).

This commit is contained in:
Alex Zolotarev 2016-01-19 16:14:44 +03:00 committed by Sergey Yershov
parent 9dd35d1682
commit 16cbd51453

View file

@ -184,7 +184,7 @@ string OsmOAuth::SendAuthRequest(string const & requestTokenKey, SessionID const
if (pos == string::npos)
return string();
auto const end = callbackURL.find("&", pos);
return callbackURL.substr(pos + vKey.length(), end == string::npos ? end : end - pos - vKey.length()+ 1);
return callbackURL.substr(pos + vKey.length(), end == string::npos ? end : end - pos - vKey.length());
}
TKeySecret OsmOAuth::FetchRequestToken() const