[FIX] mail: 1000 as limit for wall messages is a little bit too high.

Just a little bit.
This commit is contained in:
Denis Ledoux 2014-12-12 13:41:16 +01:00
parent 2bebba76d0
commit 9b72e70bba
1 changed files with 1 additions and 1 deletions

View File

@ -1890,7 +1890,7 @@ openerp.mail = function (session) {
'show_compact_message': this.action.params.view_mailbox ? false : 1,
'view_inbox': false,
'emails_from_on_composer': false,
'fetch_limit': 1000 // allow inbox to load all children messages
'fetch_limit': 30 // allow inbox to load all children messages
}, this.action.params);
},