diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-27 09:14:59 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-27 09:14:59 +0000 |
commit | e1748da64473c0a9b5f5ac2a02923f9f3fbcd510 (patch) | |
tree | 23bcf865be8a95c8ced4569fec60effb3630df8b /protocols/Twitter | |
parent | 3493aade67d1b80576777bddb8450a09987b1582 (diff) |
Twitter: forcing of baceurl is still needed
git-svn-id: http://svn.miranda-ng.org/main/trunk@2091 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter')
-rw-r--r-- | protocols/Twitter/src/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Twitter/src/connection.cpp b/protocols/Twitter/src/connection.cpp index d7d6ba9b16..155bd5a3e5 100644 --- a/protocols/Twitter/src/connection.cpp +++ b/protocols/Twitter/src/connection.cpp @@ -137,7 +137,7 @@ bool TwitterProto::NegotiateConnection() // twitter changed the base URL in v1.1 of the API, I don't think users will need to modify it, so
// i'll be forcing it to the new API URL here. After a while I can get rid of this as users will
// have either had this run at least once, or have reset their miranda profile. 14/10/2012
- //DBWriteContactSettingString(0,m_szModuleName,TWITTER_KEY_BASEURL,"https://api.twitter.com/1.1/");
+ DBWriteContactSettingString(0,m_szModuleName,TWITTER_KEY_BASEURL,"https://api.twitter.com/");
if((oauthToken.size() <= 1) || (oauthTokenSecret.size() <= 1)) {
// first, reset all the keys so we can start fresh
|