summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core.py b/src/core.py
index d7afd773..719d0f56 100644
--- a/src/core.py
+++ b/src/core.py
@@ -598,12 +598,10 @@ class Core(object):
parts of the client (for example, set the MucTabs as not joined, etc)
"""
msg = msg or ''
- for tab in self.tabs:
- if isinstance(tab, tabs.MucTab) and tab.joined:
- tab.command_part(msg)
self.save_config()
- # Ugly fix thanks to gmail servers
- self.xmpp.disconnect(reconnect)
+ self.xmpp.disconnect()
+ if reconnect:
+ self.xmpp.start()
def send_message(self, msg):
"""