adium 4694:9b4f5ee4a326: Fix "Cannot delete Gadu-Gadu contact fr...
commits at adium.im
commits at adium.im
Sun Feb 19 13:12:20 UTC 2012
details: http://hg.adium.im/adium/rev/9b4f5ee4a326
revision: 4694:9b4f5ee4a326
branch: (none)
author: Adrian Godoroja <robotive at me.com>
date: Sun Feb 19 15:12:12 2012 +0200
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.
diffs (41 lines):
diff -r bf8c73879199 -r 9b4f5ee4a326 ChangeLogs/Changes Between Betas.txt
--- 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).
diff -r bf8c73879199 -r 9b4f5ee4a326 Plugins/Purple Service/ESPurpleGaduGaduAccount.m
--- 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;
More information about the commits
mailing list