diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-16 22:03:37 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-16 22:03:37 +0000 |
commit | b5c08ff62968cf49c19dcdd2347520e400cbb5f5 (patch) | |
tree | 868a4dc3007fe1a1f608a0f6f22dad8ee43890f8 /protocols/MSN/src/msn_commands.cpp | |
parent | 28a5e958778bae84618a6eb57e4864d37c07cd0c (diff) |
- Fixed port number in options dlg (which still showed old port number)
- Changed checkboxes to enable setting instead of disable it by checking them which seems a bit inconsistent.
- Also cache MSN Passport token as it is needed for editing MSN profile in web
- Do not set user status to offline when another endpoint of our user (i.e. web) disconnects.
- Set wlid in options dialog when saving username/pass so that other modules can also read current WLID correctly (as we do not rely on e-mail addresses anymore)
- Kick out file sending/receiving capability as this doesn't work anymore.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13658 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 568aa898c1..ddfac66fb9 100644 --- a/protocols/MSN/src/msn_commands.cpp +++ b/protocols/MSN/src/msn_commands.cpp @@ -748,6 +748,7 @@ void CMsnProto::MSN_ProcessNLN(const char *userStatus, const char *wlid, char *u char* szEmail, *szNet;
parseWLID(NEWSTR_ALLOCA(wlid), &szNet, &szEmail, NULL);
if (!stricmp(szEmail, GetMyUsername(atoi(szNet)))) {
+ if (!*userStatus) return;
isMe = true;
int newStatus = MSNStatusToMiranda(userStatus);
if (newStatus != m_iStatus && newStatus != ID_STATUS_IDLE) {
|