diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-02 16:50:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-03 16:53:34 +0800 |
commit | b7f5aed23c4253145811b7759f8ea8ed120903a1 (patch) | |
tree | 3a47982c365f8f9fcf99e1a486abfefb9e65b941 /libempathy | |
parent | 4e5ccb224018c01ba381259cbfe9c54e78082d3f (diff) | |
download | gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.tar gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.tar.gz gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.tar.bz2 gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.tar.lz gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.tar.xz gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.tar.zst gsoc2013-empathy-b7f5aed23c4253145811b7759f8ea8ed120903a1.zip |
client-factory: prepare TP_CHANNEL_FEATURE_CONTACTS
We are about to use the channel-contacts API so best to make sure they will
work.
https://bugzilla.gnome.org/show_bug.cgi?id=675229
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-client-factory.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy/empathy-client-factory.c b/libempathy/empathy-client-factory.c index 2a8559441..9135562fb 100644 --- a/libempathy/empathy-client-factory.c +++ b/libempathy/empathy-client-factory.c @@ -66,6 +66,9 @@ empathy_client_factory_dup_channel_features (TpSimpleClientFactory *factory, features = chainup->dup_channel_features (factory, channel); + feature = TP_CHANNEL_FEATURE_CONTACTS; + g_array_append_val (features, feature); + if (EMPATHY_IS_TP_CHAT (channel)) { feature = TP_CHANNEL_FEATURE_CHAT_STATES; |