aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-04-20 05:04:31 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-04-20 05:04:31 +0800
commit6718848515aaf4d727e10fd3413d3ba0b7e084a9 (patch)
tree617b0c5a23edfd409bbbf3dcdf48946813ecfc3d
parent76d322dac811789e535af7a990baaa23942f768e (diff)
downloadgsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.tar
gsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.tar.gz
gsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.tar.bz2
gsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.tar.lz
gsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.tar.xz
gsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.tar.zst
gsoc2013-empathy-6718848515aaf4d727e10fd3413d3ba0b7e084a9.zip
Fix litle bug in dispatcher
svn path=/trunk/; revision=989
-rw-r--r--src/empathy-filter.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-filter.c b/src/empathy-filter.c
index e256502e2..888aff6e3 100644
--- a/src/empathy-filter.c
+++ b/src/empathy-filter.c
@@ -659,7 +659,8 @@ filter_conection_new_channel_cb (TpConnection *connection,
}
else if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_CONTACT_LIST)) {
func = filter_contact_list_handle_channel;
- } if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES)) {
+ }
+ else if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES)) {
func = filter_tubes_handle_channel;
} else {
empathy_debug (DEBUG_DOMAIN, "Unknown channel type %s",