Use color overrides for users when message_user_color is enabled (#245)

This commit is contained in:
Ulyssa 2024-04-02 08:42:27 -07:00 committed by GitHub
parent 0f17bbfa17
commit e5b284ed19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 6 deletions

View file

@ -863,7 +863,7 @@ impl Message {
}
if settings.tunables.message_user_color {
let color = crate::config::user_color(self.sender.as_str());
let color = settings.get_user_color(&self.sender);
style = style.fg(color);
}