adium 2466:fc5fc792c0aa: Don't set the connect host for a Jabber...

commits at adium.im commits at adium.im
Sat Jun 6 21:31:30 UTC 2009


details:	http://hg.adium.im/adium/rev/fc5fc792c0aa
revision:	2466:fc5fc792c0aa
author:		Zachary West <zacw at adium.im>
date:		Sat Jun 06 17:31:11 2009 -0400

Don't set the connect host for a Jabber account when creating it, as SRV records &c should be followed by default.

diffs (30 lines):

diff -r 6af1d85561ec -r fc5fc792c0aa ChangeLogs/Changes Between Betas.txt
--- a/ChangeLogs/Changes Between Betas.txt	Fri Jun 05 21:22:17 2009 -0400
+++ b/ChangeLogs/Changes Between Betas.txt	Sat Jun 06 17:31:11 2009 -0400
@@ -1,3 +1,6 @@
 Adium 1.4b7
  * Added an optional confirmation when closing a window which has multiple tabs, either always or when at least one has unviewed messages. (#12006)
+ * Added another ignored phrase for IRC server connection processes.
+ * Fixed the growl notification queue from making messages seem to arrive slightly later than they did, when only a handful are to be displayed. (#12327)
+ * Fixed improperly setting the Jabber connect server when registering a new account.
  * Moved Quit Confirmations to a new Confirmations advanced preference.
\ No newline at end of file
diff -r 6af1d85561ec -r fc5fc792c0aa Plugins/Purple Service/ESPurpleJabberAccountViewController.m
--- a/Plugins/Purple Service/ESPurpleJabberAccountViewController.m	Fri Jun 05 21:22:17 2009 -0400
+++ b/Plugins/Purple Service/ESPurpleJabberAccountViewController.m	Sat Jun 06 17:31:11 2009 -0400
@@ -322,13 +322,12 @@
 
 - (IBAction)registerRequestAccount:(id)sender {
 	[[sender window] makeFirstResponder:nil]; // apply all changes
+	
 	if([[textField_registerServerName stringValue] length] == 0) {
 		NSBeep();
 		return;
 	}
-//	[account setUID:[NSString stringWithFormat:@"unknown@%@", [textField_registerServerName stringValue]]];
-	[account setPreference:[textField_registerServerName stringValue]
-					forKey:KEY_JABBER_CONNECT_SERVER group:GROUP_ACCOUNT_STATUS];
+	
 	[account setPreference:[NSNumber numberWithInt:[textField_registerServerPort intValue]]
 					forKey:KEY_CONNECT_PORT group:GROUP_ACCOUNT_STATUS];
 




More information about the commits mailing list