From 3211ff7c780dcddf67278a3a616ecc84f9ad578a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thibault=20Delavall=C3=A9e?= Date: Fri, 22 Aug 2014 12:59:18 +0200 Subject: [PATCH] [FIX] mail: when checking for possible messages to fetch, perform a search_count on mail_message when the actual number of messages or their ids is not necessary, to speedup the computation. --- addons/mail/mail_message.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/mail/mail_message.py b/addons/mail/mail_message.py index 6413e1c..2529c4b 100644 --- a/addons/mail/mail_message.py +++ b/addons/mail/mail_message.py @@ -450,8 +450,8 @@ class mail_message(osv.Model): exp_domain = domain + [('id', '<', min(message_unload_ids + message_ids))] else: exp_domain = domain + ['!', ('id', 'child_of', message_unload_ids + parent_tree.keys())] - ids = self.search(cr, uid, exp_domain, context=context, limit=1) - if ids: + more_count = self.search_count(cr, uid, exp_domain, context=context) + if more_count: # inside a thread: prepend if parent_id: messages.insert(0, _get_expandable(exp_domain, -1, parent_id, True)) -- 1.7.10.4