adium/adium

Fix "Cannot delete Gadu-Gadu contact from list" by temporarily disabling Contact List sync with GG servers. Transplanted from 33b9952680d3 (1.4.x). Fixes #9126.
Changelog update.
--- a/ChangeLogs/Changes Between Betas.txt Fri Feb 17 01:22:27 2012 +0100
+++ b/ChangeLogs/Changes Between Betas.txt Sun Feb 19 15:12:12 2012 +0200
@@ -1,4 +1,12 @@
Adium 1.5xx
+ General
+ * Can't change XMPP room settings for combo box settings (#15629).
+ * Fixed deletion of a Gadu-Gadu contact from contact list not being persistent (#9126).
+
+ Localisation
+ * Updated localisations: Swedish (#15786).
+
+Adium 1.5rc4
* Fixed the contact list appearing in a wrong position at startup on Mac OS X Lion (#15341, #15480).
* Fixed message history only showing on 1st tab, on startup (#15377).
* Fixed message view jumps to the bottom when Twitter Timeline updates (#15790).
--- a/Plugins/Purple Service/ESPurpleGaduGaduAccount.m Fri Feb 17 01:22:27 2012 +0100
+++ b/Plugins/Purple Service/ESPurpleGaduGaduAccount.m Sun Feb 19 15:12:12 2012 +0200
@@ -63,6 +63,9 @@
- (void)uploadContactListToServer
{
+#warning Temporarily disable contact list sync with servers
+ return;
+
char *buddylist = ggp_buddylist_dump(account);
if (buddylist) {
@@ -99,7 +102,10 @@
- (void)downloadContactListFromServer
{
- //If we're connected and have no buddies, request 'em from the server.
+#warning Temporarily disable contact list sync with servers
+ return;
+
+ // If we're connected and have no buddies, request 'em from the server.
PurpleConnection *gc = purple_account_get_connection(account);
GGPInfo *info = gc->proto_data;