1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Merge pull request #1675 from paulfertser/fix-no-me-history

Use correct colour for their nick when showing history
This commit is contained in:
Michael Vetter 2022-04-03 03:15:25 +02:00 committed by GitHub
commit dfa3ca344b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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