Fixed long attachment names

This commit is contained in:
M66B
2019-07-30 14:46:02 +02:00
parent d9dd78e3a7
commit 0affd9e1f3
2 changed files with 3 additions and 7 deletions

View File

@@ -114,6 +114,8 @@ public class EntityAttachment {
String filename = Long.toString(id);
if (!TextUtils.isEmpty(name))
filename += "." + Helper.sanitizeFilename(name);
if (filename.length() > 255)
filename = filename.substring(0, 255);
return new File(dir, filename);
}