libpurple/protocols/jabber/message.c

changeset 41784
f864fee87775
parent 41239
735f7114318d
child 41940
fa0478036eaf
--- a/libpurple/protocols/jabber/message.c	Wed Oct 05 02:13:21 2022 -0500
+++ b/libpurple/protocols/jabber/message.c	Wed Oct 05 02:15:13 2022 -0500
@@ -888,7 +888,7 @@
 	 * For backward compatibility with user expectations or for those not on
 	 * the user's roster, allow sending XHTML-IM markup.
 	 */
-	if (!jbr || !jbr->caps.info ||
+	if (jbr == NULL || jbr->caps == NULL ||
 			jabber_resource_has_capability(jbr, NS_XHTML_IM)) {
 		if (!jabber_xhtml_plain_equal(xhtml, jm->body))
 			/* Wrap the message in <p/> for great interoperability justice. */

mercurial