diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-27 01:13:45 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-27 01:13:45 +0000 |
commit | c014bd45e4761fd8da881e4f726022fc918624b2 (patch) | |
tree | dd48c9cfe1614748b303b37035525e706e872a34 /protocols/MSN/src/msn_threads.cpp | |
parent | 7101bc5c14b738fb783dfd5a7f6f7d11762cbe2a (diff) |
Implemented fetching Skype Token for Cloud storage API.
Fixed error handling.
Implemented handling of RichText/UriObject
git-svn-id: http://svn.miranda-ng.org/main/trunk@13855 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_threads.cpp')
-rw-r--r-- | protocols/MSN/src/msn_threads.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/MSN/src/msn_threads.cpp b/protocols/MSN/src/msn_threads.cpp index 41ba2551db..a28e381196 100644 --- a/protocols/MSN/src/msn_threads.cpp +++ b/protocols/MSN/src/msn_threads.cpp @@ -616,9 +616,9 @@ void ThreadData::applyGatewayData(HANDLE hConn, bool isPoll) void ThreadData::getGatewayUrl(char* dest, int destlen, bool isPoll)
{
- static const char openFmtStr[] = "https://%s/gateway/gateway.dll?Action=open&Server=%s&IP=%s";
- static const char pollFmtStr[] = "https://%s/gateway/gateway.dll?Action=poll&SessionID=%s";
- static const char cmdFmtStr[] = "https://%s/gateway/gateway.dll?SessionID=%s";
+ static const char openFmtStr[] = "http://%s/gateway/gateway.dll?Action=open&Server=%s&IP=%s";
+ static const char pollFmtStr[] = "http://%s/gateway/gateway.dll?Action=poll&SessionID=%s";
+ static const char cmdFmtStr[] = "http://%s/gateway/gateway.dll?SessionID=%s";
if (mSessionID[0] == 0) {
const char* svr = mType == SERVER_NOTIFICATION ? "NS" : "SB";
|