# HG changeset patch # User Goffi # Date 1386072589 -3600 # Node ID 6edd9bda4e3f9c171ff49ef8e816877ecad586d2 # Parent f02e2c277f0c812f7ef1b8771ba30c55516414e3 plugin XEP-0085: fixed bad return value for sendMessage trigger's post treatment diff -r f02e2c277f0c -r 6edd9bda4e3f src/plugins/plugin_xep_0085.py --- a/src/plugins/plugin_xep_0085.py Sun Dec 01 17:28:30 2013 +0100 +++ b/src/plugins/plugin_xep_0085.py Tue Dec 03 13:09:49 2013 +0100 @@ -177,7 +177,7 @@ message = mess_data['xml'] to_jid = JID(message.getAttribute("to")) if not self.__checkActivation(to_jid, forceEntityData=True, profile=profile): - return True + return mess_data try: # message with a body always mean active state domish.generateElementsNamed(message.elements(), name="body").next()