diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-30 17:24:41 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-30 17:35:21 +0200 |
commit | ecf22cb4a4261b1fbbe893a0ec1bf185fcc02db8 (patch) | |
tree | 0f50ed72760d4c030edd701597e6ab1a7f78a9cb /src/tabs | |
parent | a404195a0a57030017067573aba1de2570f0280c (diff) | |
download | poezio-ecf22cb4a4261b1fbbe893a0ec1bf185fcc02db8.tar.gz poezio-ecf22cb4a4261b1fbbe893a0ec1bf185fcc02db8.tar.bz2 poezio-ecf22cb4a4261b1fbbe893a0ec1bf185fcc02db8.tar.xz poezio-ecf22cb4a4261b1fbbe893a0ec1bf185fcc02db8.zip |
Fix all the connect() reconnect() stuff
The /reconnect command should now properly work everytime.
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/rostertab.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tabs/rostertab.py b/src/tabs/rostertab.py index 3d01046b..cb80007a 100644 --- a/src/tabs/rostertab.py +++ b/src/tabs/rostertab.py @@ -241,7 +241,10 @@ class RosterInfoTab(Tab): """ /reconnect """ - self.core.disconnect(reconnect=True) + if self.core.xmpp.is_connected(): + self.core.disconnect(reconnect=True) + else: + self.core.xmpp.connect() def command_disconnect(self, args=None): """ |