mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 03:46:00 +01:00
Small improvement
This commit is contained in:
@@ -91,7 +91,7 @@ public class EntityAnswer implements Serializable {
|
||||
last = fullName.substring(0, c).trim();
|
||||
first = fullName.substring(c + 1).trim();
|
||||
} else {
|
||||
c = fullName.lastIndexOf(' ');
|
||||
c = fullName.indexOf(' ');
|
||||
if (c > 0) {
|
||||
first = fullName.substring(0, c).trim();
|
||||
last = fullName.substring(c + 1).trim();
|
||||
|
||||
Reference in New Issue
Block a user