mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-05 20:34:49 +01:00
Fixed long attachment names
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -529,13 +529,7 @@ public class Helper {
|
||||
if (name == null)
|
||||
return null;
|
||||
|
||||
name = name.replaceAll("[?:\"*|/\\\\<>]", "_");
|
||||
|
||||
// Both the name and extension can be long
|
||||
if (name.length() > 255)
|
||||
name = name.substring(0, 255);
|
||||
|
||||
return name;
|
||||
return name.replaceAll("[?:\"*|/\\\\<>]", "_");
|
||||
}
|
||||
|
||||
static String getExtension(String filename) {
|
||||
|
||||
Reference in New Issue
Block a user