1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Merge pull request #1528 from dustinlagoy/pre-chat-message-display-on-history

Apply pre_chat_message_display hook to history
This commit is contained in:
Michael Vetter 2021-04-28 09:28:41 +02:00 committed by GitHub
commit 4a94c051a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -519,6 +519,7 @@ _chatwin_history(ProfChatWin* chatwin, const char* const contact_barejid)
while (curr) {
ProfMessage* msg = curr->data;
msg->plain = plugins_pre_chat_message_display(msg->from_jid->barejid, msg->from_jid->resourcepart, msg->plain);
win_print_history((ProfWin*)chatwin, msg);
curr = g_slist_next(curr);
}