From 4a32b57779f0b813aa6f7ba57147846619f68cc3 Mon Sep 17 00:00:00 2001 From: Anael Closson Date: Fri, 24 Jan 2014 13:54:44 +0100 Subject: [PATCH] [FIX] conditions inverted in involves not forgotten a bzr revid: acl@openerp.com-20140124125444-rhigcae80phfixh8 --- addons/plugin/plugin_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/plugin/plugin_handler.py b/addons/plugin/plugin_handler.py index 8b19d702872..e48e5eb4119 100644 --- a/addons/plugin/plugin_handler.py +++ b/addons/plugin/plugin_handler.py @@ -109,7 +109,7 @@ class plugin_handler(osv.osv_memory): notify = _("Mail successfully pushed, a new %s has been created.") % model else: email_from = msg.get('email_from') - if email_from: + if not email_from: author_id = False else: authors = mail_thread_obj.message_find_partner_from_emails(cr, uid, [res_id], [email_from])