always show download button when link is encrypted

dont check for known mime type
This commit is contained in:
Daniel Gultsch 2016-05-10 10:32:25 +02:00
parent 549be9bb3d
commit e542dd3923
1 changed files with 1 additions and 5 deletions

View File

@ -631,11 +631,7 @@ public class Message extends AbstractEntity {
boolean encrypted = ref != null && ref.matches("([A-Fa-f0-9]{2}){48}"); boolean encrypted = ref != null && ref.matches("([A-Fa-f0-9]{2}){48}");
if (encrypted) { if (encrypted) {
if (MimeUtils.guessMimeTypeFromExtension(extension) != null) { return Decision.MUST;
return Decision.MUST;
} else {
return Decision.NEVER;
}
} else if (Transferable.VALID_IMAGE_EXTENSIONS.contains(extension) } else if (Transferable.VALID_IMAGE_EXTENSIONS.contains(extension)
|| Transferable.WELL_KNOWN_EXTENSIONS.contains(extension)) { || Transferable.WELL_KNOWN_EXTENSIONS.contains(extension)) {
return Decision.SHOULD; return Decision.SHOULD;