adium-1.4 3666:33b9952680d3: Fix "Cannot delete Gadu-Gadu contac...

commits at adium.im commits at adium.im
Sun Feb 19 12:09:51 UTC 2012


details:	http://hg.adium.im/adium-1.4/rev/33b9952680d3
revision:	3666:33b9952680d3
branch:		(none)
author:		Adrian Godoroja <robotive at me.com>
date:		Sun Feb 19 14:08:54 2012 +0200

Fix "Cannot delete Gadu-Gadu contact from list" by temporarily disabling Contact List sync with GG servers. Patch by Tomkiewicz, r=robotive. Refs #9126.

diffs (25 lines):

diff -r 06964e2fa63c -r 33b9952680d3 Plugins/Purple Service/ESPurpleGaduGaduAccount.m
--- a/Plugins/Purple Service/ESPurpleGaduGaduAccount.m	Wed Feb 08 14:30:07 2012 +0100
+++ b/Plugins/Purple Service/ESPurpleGaduGaduAccount.m	Sun Feb 19 14:08:54 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;
 	




More information about the commits mailing list