forked from organicmaps/organicmaps
[oauth] Fixed bug with invalid token (& was included in some cases).
This commit is contained in:
parent
9dd35d1682
commit
16cbd51453
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue