libpurple/purpleprotocolchat.c

changeset 42306
aee8ab56690f
parent 41960
c8a4853205e3
child 42594
eddde70cedd8
--- 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;

mercurial