diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-17 22:14:47 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-17 22:14:47 +0800 |
commit | 4c7c9410f125620408089ee95a20bd750b055e48 (patch) | |
tree | 73a42196c238882a862fceceb5f0517d403f6722 /src | |
parent | 7e7732cf98ba9f60eb95a857178b82a8772cd403 (diff) | |
download | gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.tar gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.tar.gz gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.tar.bz2 gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.tar.lz gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.tar.xz gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.tar.zst gsoc2013-empathy-4c7c9410f125620408089ee95a20bd750b055e48.zip |
empathy: use tp_account_manager_enable_restart()
If for some reason MC crashes we should restart it right away. Ideally this
should be done by the Shell (#680099) but it's good to have in Empathy as
well.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy.c b/src/empathy.c index e2ae2632f..70b45bb34 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -765,6 +765,8 @@ empathy_app_constructed (GObject *object) tp_proxy_prepare_async (self->account_manager, NULL, account_manager_ready_cb, self); + tp_account_manager_enable_restart (self->account_manager); + migrate_config_to_xdg_dir (); /* Logging */ |