mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-05 17:15:05 -05:00
Changed the fallback char from 'K' to '?'. The riddler was here ;).
This commit is contained in:
parent
ea5905861a
commit
c30af244cf
@ -144,7 +144,7 @@ public class ContactPictureLoader {
|
||||
letter = m.group(1).toUpperCase();
|
||||
}
|
||||
|
||||
return letter.length() == 0 ? 'K' : letter.charAt(0);
|
||||
return letter.length() == 0 ? '?' : letter.charAt(0);
|
||||
}
|
||||
|
||||
/** Calculates a bitmap with a color and a capital letter for
|
||||
|
Loading…
Reference in New Issue
Block a user