Handled null condition
This commit is contained in:
parent
da74d23be6
commit
19290fd0c6
@ -355,8 +355,10 @@ Clipperz.PM.DataModel.Attachment.contentTypeIcon = function (aContentType) {
|
||||
var result;
|
||||
|
||||
result = 'other file';
|
||||
|
||||
if (aContentType == "application/pdf") {
|
||||
|
||||
if (aContentType == null) {
|
||||
result = 'other file';
|
||||
} else if (aContentType == "application/pdf") {
|
||||
result = 'pdf file';
|
||||
} else if (aContentType.indexOf('image/') == 0) {
|
||||
result = 'image file';
|
||||
|
Loading…
Reference in New Issue
Block a user