bugfix
This commit is contained in:
parent
633b45de92
commit
3b347a9b9c
1 changed files with 1 additions and 1 deletions
|
@ -656,7 +656,7 @@ class Chat:
|
||||||
self.plugin.roster.new_chat_from_jid(self.account, jid)
|
self.plugin.roster.new_chat_from_jid(self.account, jid)
|
||||||
|
|
||||||
def on_join_group_chat_menuitem_activate(self, widget, jid):
|
def on_join_group_chat_menuitem_activate(self, widget, jid):
|
||||||
server, room = jid.split('@')
|
room, server = jid.split('@')
|
||||||
if self.plugin.windows[self.account].has_key('join_gc'):
|
if self.plugin.windows[self.account].has_key('join_gc'):
|
||||||
instance = self.plugin.windows[self.account]['join_gc']
|
instance = self.plugin.windows[self.account]['join_gc']
|
||||||
instance.xml.get_widget('server_entry').set_text(server)
|
instance.xml.get_widget('server_entry').set_text(server)
|
||||||
|
|
Loading…
Add table
Reference in a new issue