diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-07 10:49:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-07 10:49:23 +0000 |
commit | 68b1aca7d93264a83df7b1f553b077879c95da71 (patch) | |
tree | 47be761e2f6b3a92b3fa067c55b73643494cd100 /protocols | |
parent | 9ba7e15c4f8248c90f10b4e52439976c624f27cf (diff) |
typo fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14042 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/src/skype_login.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_login.cpp b/protocols/SkypeWeb/src/skype_login.cpp index 9196ef4f77..c9dabd80d1 100644 --- a/protocols/SkypeWeb/src/skype_login.cpp +++ b/protocols/SkypeWeb/src/skype_login.cpp @@ -94,7 +94,7 @@ void CSkypeProto::OnLoginOAuth(const NETLIBHTTPREQUEST *response) return;
}
std::string token = json["skypetoken"].as_string();
- setString("m_szTokenSecret", token.c_str());
+ setString("TokenSecret", token.c_str());
int expiresIn = json["expiresIn"].as_int();
setDword("TokenExpiresIn", time(NULL) + expiresIn);
|