Merge pull request #2217 from daquexian/issue_740
Allow any unicode letter to act as a placeholder for contacts with no photo.
This commit is contained in:
commit
1be97b85f3
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ public class ContactPictureLoader {
|
|||
/**
|
||||
* Pattern to extract the letter to be displayed as fallback image.
|
||||
*/
|
||||
private static final Pattern EXTRACT_LETTER_PATTERN = Pattern.compile("[a-zA-Z]");
|
||||
private static final Pattern EXTRACT_LETTER_PATTERN = Pattern.compile("\\p{L}\\p{M}*");
|
||||
|
||||
/**
|
||||
* Letter to use when {@link #EXTRACT_LETTER_PATTERN} couldn't find a match.
|
||||
|
|
Loading…
Reference in a new issue