don't stop Gajim when dbus is stopped. Fixes #3032

This commit is contained in:
Yann Leboulanger 2007-06-25 16:23:21 +00:00
parent abcb48d1e0
commit 2c4f2896af
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,8 @@ class SystemBus:
return False
if self.system_bus is None:
return False
# Don't exit Gajim when dbus is stopped
self.system_bus.set_exit_on_disconnect(False)
return True
system_bus = SystemBus()