summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-02-19 22:24:10 +0100
committermathieui <mathieui@mathieui.net>2012-02-19 22:24:10 +0100
commit687b9106e78b970cd8e382207856980048b0ef94 (patch)
tree9dc0230cb27bab5c3fb6decccda63571f2497cd9 /src
parent762bd953cb1c3e8e53857cc22116aa86dd7c259a (diff)
downloadpoezio-687b9106e78b970cd8e382207856980048b0ef94.tar.gz
poezio-687b9106e78b970cd8e382207856980048b0ef94.tar.bz2
poezio-687b9106e78b970cd8e382207856980048b0ef94.tar.xz
poezio-687b9106e78b970cd8e382207856980048b0ef94.zip
Revert a regression on the conversation_msg event
Diffstat (limited to 'src')
-rw-r--r--src/core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py
index f9ae4198..0885a70f 100644
--- a/src/core.py
+++ b/src/core.py
@@ -801,6 +801,7 @@ class Core(object):
return
conversation = self.get_tab_of_conversation_with_jid(jid, create=True)
self.events.trigger('conversation_msg', message, conversation)
+ body = xhtml.get_body_from_message_stanza(message)
if roster.get_contact_by_jid(jid.bare):
remote_nick = roster.get_contact_by_jid(jid.bare).name or jid.user
else: