From 47b58b8994d9f5c9caa308455b638ed1f5341a2a Mon Sep 17 00:00:00 2001 From: lilia Date: Fri, 31 Jul 2015 11:13:27 -0700 Subject: [PATCH] Use the correct number of contact colors Bugfix from 2f12275 --- js/models/conversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index 39c7f68e5..712c42d38 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -250,7 +250,7 @@ } var initials = title.trim()[0]; return { - color: Math.abs(this.hashCode()) % 18, + color: Math.abs(this.hashCode()) % 15, content: initials }; } else {