pidgin: 74c2a132: Disable Roster Versioning for the moment...
darkrain42 at pidgin.im
darkrain42 at pidgin.im
Thu Dec 10 00:45:51 EST 2009
-----------------------------------------------------------------
Revision: 74c2a132ab1954018974dfcb276a5d01f68cc540
Ancestor: 4356cc7feb044645d98b4ec0ce70476371949c99
Author: darkrain42 at pidgin.im
Date: 2009-12-10T05:40:59
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/74c2a132ab1954018974dfcb276a5d01f68cc540
Modified files:
ChangeLog libpurple/protocols/jabber/roster.c
ChangeLog:
Disable Roster Versioning for the moment.
We need to store the subscription data in the buddy list so it's
available, which is turning into a minor pain. Refs #10935.
-------------- next part --------------
============================================================
--- ChangeLog 9ccdcafd7a205e15f91fc509a9e83ff2c8c69dbb
+++ ChangeLog c28ff952b1aae47b06bcd1631f08d6a2c4bdb75d
@@ -15,7 +15,6 @@ version 2.6.5 (??/??/20??):
(when given by the result of the "last query") and don't show status as
offline.
* Do not crash when attempting to register for a new account on Windows.
- * Added support for Roster Versioning (XEP-0237).
* Fix file transfer with clients that do not support Entity Capabilities
(e.g. Spark)
============================================================
--- libpurple/protocols/jabber/roster.c 81456d58d3f1b1f9a377119a046b7702061092fe
+++ libpurple/protocols/jabber/roster.c a8e83be0e90322c2f78079c268640c78dbc55dfe
@@ -77,16 +77,13 @@ void jabber_roster_request(JabberStream
void jabber_roster_request(JabberStream *js)
{
PurpleAccount *account;
- const char *ver;
JabberIq *iq;
xmlnode *query;
account = purple_connection_get_account(js->gc);
- ver = purple_account_get_string(account, "roster_ver", "");
iq = jabber_iq_new_query(js, JABBER_IQ_GET, "jabber:iq:roster");
query = xmlnode_get_child(iq->node, "query");
- xmlnode_set_attrib(query, "ver", ver);
if (js->server_caps & JABBER_CAP_GOOGLE_ROSTER) {
xmlnode_set_attrib(query, "xmlns:gr", NS_GOOGLE_ROSTER);
More information about the Commits
mailing list