Log files are text files

This commit is contained in:
M66B 2019-10-30 08:08:16 +01:00
parent a801ddb8e5
commit 4a12389ccb
1 changed files with 3 additions and 0 deletions

View File

@ -160,6 +160,9 @@ public class EntityAttachment {
if ("application/zip".equals(type) ||
"application/octet-stream".equals(type)) {
if ("log".equalsIgnoreCase(extension))
return "text/plain";
String gtype = MimeTypeMap.getSingleton()
.getMimeTypeFromExtension(extension.toLowerCase(Locale.ROOT));
if (gtype == null || gtype.equals(type))