diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-16 21:53:18 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-16 21:53:18 +0800 |
commit | f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf (patch) | |
tree | 5d4b91540c68bbc948b531109d6b97b5e9cb04a7 /libempathy/empathy-account-manager.c | |
parent | 758bc33318e81709f4a64ea99c0629e9c522258a (diff) | |
download | gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.tar gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.tar.gz gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.tar.bz2 gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.tar.lz gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.tar.xz gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.tar.zst gsoc2013-empathy-f8043f3f6ebdd8acee896f0b50f78f62b35d0fdf.zip |
Default to OFFLINE instead of UNSET for the global presence
Diffstat (limited to 'libempathy/empathy-account-manager.c')
-rw-r--r-- | libempathy/empathy-account-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-account-manager.c b/libempathy/empathy-account-manager.c index ed24e0623..ebeb90d72 100644 --- a/libempathy/empathy-account-manager.c +++ b/libempathy/empathy-account-manager.c @@ -145,7 +145,7 @@ static void emp_account_manager_update_global_presence (EmpathyAccountManager *manager) { EmpathyAccountManagerPriv *priv = GET_PRIV (manager); - TpConnectionPresenceType presence = TP_CONNECTION_PRESENCE_TYPE_UNSET; + TpConnectionPresenceType presence = TP_CONNECTION_PRESENCE_TYPE_OFFLINE; EmpathyAccount *account = NULL; GHashTableIter iter; gpointer value; |