# HG changeset patch # User Paul Aurich # Date 1227836998 0 # Node ID 4caae7801f4df1a5c2cf582a2f1be6d03610ba85 # Parent 2675fda76ddff0ecba70b1353bbeaccbb4c14953 Fix the namespace URL we look for on PEP reply stanzas to match the URL we use on the "get" requests. Fixes #7291. committer: John Bailey diff -r 2675fda76ddf -r 4caae7801f4d ChangeLog --- a/ChangeLog Thu Nov 27 20:53:51 2008 +0000 +++ b/ChangeLog Fri Nov 28 01:49:58 2008 +0000 @@ -15,6 +15,8 @@ * The Buddy State Notification plugin no longer turns JID's, MSN Passport ID's, etc. into links (Florian Quèze) * Fix a crash in SIMPLE when a malformed message is received. + * Fix the namespace URL we look for in PEP reply stanzas to match the URL + used in the 'get' requests (Paul Aurich) Pidgin: * On GTK+ 2.14 and higher, we're using the gtk-tooltip-delay setting diff -r 2675fda76ddf -r 4caae7801f4d libpurple/protocols/jabber/pep.c --- a/libpurple/protocols/jabber/pep.c Thu Nov 27 20:53:51 2008 +0000 +++ b/libpurple/protocols/jabber/pep.c Fri Nov 28 01:49:58 2008 +0000 @@ -54,7 +54,7 @@ static void do_pep_iq_request_item_callback(JabberStream *js, xmlnode *packet, gpointer data) { const char *from = xmlnode_get_attrib(packet,"from"); - xmlnode *pubsub = xmlnode_get_child_with_namespace(packet,"pubsub","http://jabber.org/protocol/pubsub#event"); + xmlnode *pubsub = xmlnode_get_child_with_namespace(packet,"pubsub","http://jabber.org/protocol/pubsub"); xmlnode *items = NULL; JabberPEPHandler *cb = data;