From 2ac65137aa1fa75ac466cd83020ea54d6247d5eb Mon Sep 17 00:00:00 2001 From: Jonas Wielicki Date: Sun, 26 Nov 2017 13:21:33 +0100 Subject: XEP-0392 MUC: Base User color solely on nickname --- poezio/user.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/poezio/user.py b/poezio/user.py index c69d241c..ae70f6f8 100644 --- a/poezio/user.py +++ b/poezio/user.py @@ -56,8 +56,7 @@ class User(object): if theme.ccg_palette: # use XEP-0392 CCG fg_color = colors.ccg_text_to_color( - theme.ccg_palette, self.jid.bare - if self.jid and self.jid.bare else self.nick) + theme.ccg_palette, self.nick) self.color = fg_color, -1 else: mod = len(theme.LIST_COLOR_NICKNAMES) -- cgit v1.2.3