summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
Diffstat (limited to 'protocols')
-rw-r--r--protocols/JabberG/src/jabber_thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp
index 3dd2f90031..b53de765b1 100644
--- a/protocols/JabberG/src/jabber_thread.cpp
+++ b/protocols/JabberG/src/jabber_thread.cpp
@@ -1061,7 +1061,7 @@ void CJabberProto::OnProcessMessage(HXML node, ThreadData *info)
HXML bodyNode = xmlGetChildByTag(node, "body", "xml:lang", m_tszSelectedLang);
if (bodyNode == NULL)
bodyNode = xmlGetChild(node, "body");
- if (bodyNode != NULL && xmlGetText(bodyNode))
+ if (bodyNode != NULL)
szMessage = xmlGetText(bodyNode);
LPCTSTR ptszSubject = xmlGetText(xmlGetChild(node, "subject"));