1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Use correct colour for their nick when showing history

This commit is contained in:
Paul Fertser 2022-04-01 17:14:48 +03:00
parent cef0c5e927
commit 4290d87df9

View File

@ -1270,6 +1270,7 @@ win_print_history(ProfWin* window, const ProfMessage* const message)
display_name = strdup("me"); display_name = strdup("me");
} else { } else {
display_name = roster_get_msg_display_name(message->from_jid->barejid, message->from_jid->resourcepart); display_name = roster_get_msg_display_name(message->from_jid->barejid, message->from_jid->resourcepart);
flags = NO_ME;
} }
jid_destroy(jidp); jid_destroy(jidp);