]> git.0d.be Git - empathy.git/commitdiff
account-assistant: disable Google Talk when creating a new account
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 19 Jan 2010 14:03:11 +0000 (14:03 +0000)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 19 Jan 2010 15:46:54 +0000 (15:46 +0000)
Google Talk doesn't support inband registration (#607455).

src/empathy-account-assistant.c

index 9e6a5fc04c9ceeec9fe2a8209e6cf56281c888d8..e0e230e437c1068b931147d15487779d5f776a28 100644 (file)
@@ -390,6 +390,9 @@ account_assistant_chooser_create_account_filter_func (
     gboolean is_gtalk,
     gpointer user_data)
 {
+  if (is_gtalk)
+    return FALSE;
+
   return tp_connection_manager_protocol_can_register (protocol);
 }