[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.
This commit is contained in:
Thibault Delavallée 2014-08-22 12:59:18 +02:00
parent 10be95407a
commit 3211ff7c78
1 changed files with 2 additions and 2 deletions

View File

@ -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))