mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Small improvement
This commit is contained in:
@@ -64,6 +64,13 @@ public class EntityAnswer implements Serializable {
|
||||
email = ((InternetAddress) address[0]).getAddress();
|
||||
}
|
||||
|
||||
if (fullName != null) {
|
||||
if (fullName.startsWith("\""))
|
||||
fullName = fullName.substring(1);
|
||||
if (fullName.endsWith("\""))
|
||||
fullName = fullName.substring(0, fullName.length() - 1);
|
||||
}
|
||||
|
||||
String first = fullName;
|
||||
String last = null;
|
||||
if (fullName != null) {
|
||||
|
||||
Reference in New Issue
Block a user