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:
Philip 2017-02-09 23:36:51 +00:00 committed by GitHub
commit 1be97b85f3

View file

@ -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.