adium 2867:0992184f3512: Don't display Facebook history, and for...
commits at adium.im
commits at adium.im
Thu Nov 5 04:04:55 UTC 2009
details: http://hg.adium.im/adium/rev/0992184f3512
revision: 2867:0992184f3512
author: Zachary West <zacw at adium.im>
date: Wed Nov 04 19:40:07 2009 -0800
Don't display Facebook history, and force-enable groups (in case 1.3 had set it to disabled at some point).
Subject: adium 2868:825d958e3247: Don't return an alias in the preview chat. Fixes #13321.
details: http://hg.adium.im/adium/rev/825d958e3247
revision: 2868:825d958e3247
author: Zachary West <zacw at adium.im>
date: Wed Nov 04 23:03:03 2009 -0500
Don't return an alias in the preview chat. Fixes #13321.
diffs (27 lines):
diff -r 387bf8d7d2ab -r 825d958e3247 Plugins/Purple Service/PurpleFacebookAccount.m
--- a/Plugins/Purple Service/PurpleFacebookAccount.m Wed Nov 04 22:53:19 2009 -0500
+++ b/Plugins/Purple Service/PurpleFacebookAccount.m Wed Nov 04 23:03:03 2009 -0500
@@ -33,6 +33,11 @@
* to us.
*/
purple_account_set_bool(account, "facebook_get_notifications", FALSE);
+
+ // We do our own history; don't let the server's history get displayed as new messages
+ purple_account_set_bool(account, "facebook_show_history", FALSE);
+
+ purple_account_set_bool(account, "facebook_use_groups", TRUE);
}
- (NSString *)host
diff -r 387bf8d7d2ab -r 825d958e3247 Plugins/WebKit Message View/AIPreviewChat.m
--- a/Plugins/WebKit Message View/AIPreviewChat.m Wed Nov 04 22:53:19 2009 -0500
+++ b/Plugins/WebKit Message View/AIPreviewChat.m Wed Nov 04 23:03:03 2009 -0500
@@ -39,7 +39,7 @@
- (NSString *)aliasForContact:(AIListObject *)contact
{
- return contact.displayName;
+ return nil;
}
@end
More information about the commits
mailing list