aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-08-02 20:46:25 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-08-03 22:13:29 +0800
commit44982406d7bc6317a7674d21f830ad50ab4f3810 (patch)
tree664f9ff02ad00ea29420da757d87bfd839c09e72
parent3de9dd6a3d2b66049de6ad60c197f548ecd8a1f6 (diff)
downloadgsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.tar
gsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.tar.gz
gsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.tar.bz2
gsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.tar.lz
gsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.tar.xz
gsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.tar.zst
gsoc2013-empathy-44982406d7bc6317a7674d21f830ad50ab4f3810.zip
client-factory: add TP_ACCOUNT_FEATURE_STORAGE
Needed for the Ubuntu Online Accounts plugins.
-rw-r--r--libempathy/empathy-client-factory.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy/empathy-client-factory.c b/libempathy/empathy-client-factory.c
index 9e915f978..2d3691a1e 100644
--- a/libempathy/empathy-client-factory.c
+++ b/libempathy/empathy-client-factory.c
@@ -92,6 +92,9 @@ empathy_client_factory_dup_account_features (TpSimpleClientFactory *factory,
feature = TP_ACCOUNT_FEATURE_ADDRESSING;
g_array_append_val (features, feature);
+ feature = TP_ACCOUNT_FEATURE_STORAGE;
+ g_array_append_val (features, feature);
+
return features;
}