mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Letter icons for non latin characters
This commit is contained in:
@@ -115,7 +115,7 @@ class ImageHelper {
|
||||
String letter = null;
|
||||
for (int i = 0; i < name.length(); i++) {
|
||||
char kar = name.charAt(i);
|
||||
if (Character.isAlphabetic(kar)) {
|
||||
if (Helper.isPrintableChar(kar)) {
|
||||
letter = name.substring(i, i + 1).toUpperCase();
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user