diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-20 18:58:31 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-20 18:58:31 +0000 |
commit | b34e591a4ba1785cdd658b8dd1a492a3f9569d19 (patch) | |
tree | 66cd513360acfb6b216ec90c0da32cc16cead769 /protocols/MSN | |
parent | 80ecc6b2862c5de44432f930190ecfebb3030a30 (diff) |
Reading own profile is needed for later profile updates, re-enable the call
git-svn-id: http://svn.miranda-ng.org/main/trunk@13721 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN')
-rw-r--r-- | protocols/MSN/src/msn_contact.cpp | 4 | ||||
-rw-r--r-- | protocols/MSN/src/msn_threads.cpp | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/protocols/MSN/src/msn_contact.cpp b/protocols/MSN/src/msn_contact.cpp index 6743aa8e74..4e58396710 100644 --- a/protocols/MSN/src/msn_contact.cpp +++ b/protocols/MSN/src/msn_contact.cpp @@ -276,7 +276,9 @@ bool CMsnProto::MSN_RefreshContactList(void) // Populate Contact list on MSN network to get status updates of contacts
MSN_CreateContList();
- //MSN_StoreGetProfile();
+
+ // Read my own profile from SOAP AB
+ MSN_StoreGetProfile();
}
else
{
diff --git a/protocols/MSN/src/msn_threads.cpp b/protocols/MSN/src/msn_threads.cpp index 5fa82e973b..ed78b91f50 100644 --- a/protocols/MSN/src/msn_threads.cpp +++ b/protocols/MSN/src/msn_threads.cpp @@ -601,9 +601,9 @@ void ThreadData::applyGatewayData(HANDLE hConn, bool isPoll) void ThreadData::getGatewayUrl(char* dest, int destlen, bool isPoll)
{
- 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";
+ 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";
if (mSessionID[0] == 0) {
const char* svr = mType == SERVER_NOTIFICATION ? "NS" : "SB";
|