--- a/libpurple/purpleprotocolchat.c Mon Sep 04 23:04:09 2023 -0500 +++ b/libpurple/purpleprotocolchat.c Mon Sep 04 23:10:47 2023 -0500 @@ -157,6 +157,7 @@ gint purple_protocol_chat_send(PurpleProtocolChat *protocol_chat, PurpleConnection *connection, gint id, + PurpleConversation *conversation, PurpleMessage *message) { PurpleProtocolChatInterface *iface = NULL; @@ -167,7 +168,8 @@ iface = PURPLE_PROTOCOL_CHAT_GET_IFACE(protocol_chat); if(iface != NULL && iface->send != NULL) { - return iface->send(protocol_chat, connection, id, message); + return iface->send(protocol_chat, connection, id, conversation, + message); } return -1;