diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2015-09-26 12:42:01 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2015-09-26 12:42:01 +0000 |
commit | 6ea19ec892b3b1f89ff8fc23e002839cf3bc66d3 (patch) | |
tree | 27808e6f65c082dfb1c814eb87b93cfc0b13ee75 /protocols/MSN/src/msn_commands.cpp | |
parent | 526422ad0d6a038125013ae7e41c7baa8d6fbfd4 (diff) |
MSN: Fixed ping so that registration hopefully doesn't timeout anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@15448 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_commands.cpp')
-rw-r--r-- | protocols/MSN/src/msn_commands.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/MSN/src/msn_commands.cpp b/protocols/MSN/src/msn_commands.cpp index fbecb676ac..cf4a7054f0 100644 --- a/protocols/MSN/src/msn_commands.cpp +++ b/protocols/MSN/src/msn_commands.cpp @@ -163,6 +163,7 @@ void CMsnProto::MSN_ReceiveMessage(ThreadData* info, char* cmdString, char* para else mChatID = info->mChatID;
const char* tMsgId = tHeader["Message-ID"];
+ if (tMsgId) lastMsgId=_atoi64(tMsgId);
// Chunked message
char* newbody = NULL;
|