diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-25 21:24:24 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-26 20:04:09 +0800 |
commit | 08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea (patch) | |
tree | c7d005bcf7137911e2458c1c35d96992622f7b05 | |
parent | 975f45f447bb3ceea7a467766a513b301c4b36c2 (diff) | |
download | gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.tar gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.tar.gz gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.tar.bz2 gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.tar.lz gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.tar.xz gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.tar.zst gsoc2013-empathy-08c450056e0bb41e7ecc10f505ae0e6fea6dc6ea.zip |
account-assistant: stop blacklisting IRC (#596086)
-rw-r--r-- | src/empathy-account-assistant.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index e302aaf66..4e615e82e 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -477,8 +477,7 @@ account_assistant_chooser_enter_details_filter_func ( gboolean is_facebook, gpointer user_data) { - if (!tp_strdiff (protocol->name, "local-xmpp") || - !tp_strdiff (protocol->name, "irc")) + if (!tp_strdiff (protocol->name, "local-xmpp")) return FALSE; return TRUE; |