[FIX] mail: attachement filetype

bzr revid: chm@openerp.com-20130131145427-zie2pwzfgfqer5oo
This commit is contained in:
Christophe Matthieu 2013-01-31 15:54:27 +01:00
parent 3cb01bd596
commit 17718ce925
1 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ openerp.mail = function (session) {
// As it only looks at the extension it is quite approximative.
filetype: function(url){
url = url.filename || url;
var tokens = url.split('.');
var tokens = (url+'').split('.');
if(tokens.length <= 1){
return 'unknown';
}
@ -271,7 +271,7 @@ openerp.mail = function (session) {
var attach = this.attachment_ids[l];
if (!attach.formating) {
attach.url = mail.ChatterUtils.get_attachment_url(this.session, this.id, attach.id);
attach.filetype = mail.ChatterUtils.filetype(attach.filename);
attach.filetype = mail.ChatterUtils.filetype(attach.filename || attach.name);
attach.name = mail.ChatterUtils.breakword(attach.name || attach.filename);
attach.formating = true;
}