Use the correct number of contact colors

Bugfix from 2f12275
This commit is contained in:
lilia 2015-07-31 11:13:27 -07:00
parent 4fc4573de4
commit 47b58b8994

View file

@ -250,7 +250,7 @@
} }
var initials = title.trim()[0]; var initials = title.trim()[0];
return { return {
color: Math.abs(this.hashCode()) % 18, color: Math.abs(this.hashCode()) % 15,
content: initials content: initials
}; };
} else { } else {