mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-19 15:33:31 +02: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