libpurple/protocols/irc/cmds.c

branch
release-2.x.y
changeset 41335
c49dcf00bee6
parent 38259
c593fc9f5438
--- a/libpurple/protocols/irc/cmds.c	Sat Apr 23 05:05:15 2022 -0500
+++ b/libpurple/protocols/irc/cmds.c	Sat Apr 23 05:05:54 2022 -0500
@@ -390,7 +390,7 @@
 		buf = irc_format(irc, "vc:", "PART", args[0] ? args[0] : target, args[1]);
 	else
 		buf = irc_format(irc, "vc", "PART", args[0] ? args[0] : target);
-	irc_send(irc, buf);
+	irc_priority_send(irc, buf);
 	g_free(buf);
 
 	return 0;
@@ -479,7 +479,7 @@
 		 * decide we want custom quit messages.
 		 */
 		buf = irc_format(irc, "v:", "QUIT", (args && args[0]) ? args[0] : IRC_DEFAULT_QUIT);
-		irc_send(irc, buf);
+		irc_priority_send(irc, buf);
 		g_free(buf);
 
 		irc->quitting = TRUE;

mercurial