summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
Diffstat (limited to 'protocols')
-rw-r--r--protocols/MSN/msn_commands.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/protocols/MSN/msn_commands.cpp b/protocols/MSN/msn_commands.cpp
index 3fc028ad19..3902f29a25 100644
--- a/protocols/MSN/msn_commands.cpp
+++ b/protocols/MSN/msn_commands.cpp
@@ -828,17 +828,17 @@ void CMsnProto::sttProcessStatusMessage(char* buf, unsigned len, const char* wli
// Process status message info
char* szStatMsg = ezxml_txt(ezxml_child(xmli, "PSM"));
- stripBBCode(szStatMsg);
- stripColorCode(szStatMsg);
- {
- mir_ptr<TCHAR> tszStatMsg = mir_utf8decodeT(szStatMsg);
- if (*tszStatMsg)
- DBWriteContactSettingTString(hContact, "CList", "StatusMsg", tszStatMsg);
- else
- DBDeleteContactSetting(hContact, "CList", "StatusMsg");
-
+ if (*szStatMsg) {
+ stripBBCode(szStatMsg);
+ stripColorCode(szStatMsg);
+ mir_ptr<TCHAR> tszStatMsg( mir_utf8decodeT(szStatMsg));
+ DBWriteContactSettingTString(hContact, "CList", "StatusMsg", tszStatMsg);
SendBroadcast(hContact, ACKTYPE_AWAYMSG, ACKRESULT_SUCCESS, NULL, (LPARAM)tszStatMsg);
}
+ else {
+ DBDeleteContactSetting(hContact, "CList", "StatusMsg");
+ SendBroadcast(hContact, ACKTYPE_AWAYMSG, ACKRESULT_SUCCESS, NULL, NULL);
+ }
// Process current media info
const char* szCrntMda = ezxml_txt(ezxml_child(xmli, "CurrentMedia"));