handle null names in getColorForName

This commit is contained in:
Daniel Gultsch 2015-12-29 10:32:54 +01:00
parent 7bb67ee660
commit cfccf5e90d
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class UIHelper {
}
public static int getColorForName(String name) {
if (name.isEmpty()) {
if (name == null || name.isEmpty()) {
return 0xFF202020;
}
int colors[] = {0xFFe91e63, 0xFF9c27b0, 0xFF673ab7, 0xFF3f51b5,