Fix room joining on muclisttab that was broken in the previous commit
This commit is contained in:
parent
f405984f8d
commit
964e84e11b
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ class MucListTab(Tab):
|
||||||
row = self.listview.get_selected_row()
|
row = self.listview.get_selected_row()
|
||||||
if not row:
|
if not row:
|
||||||
return
|
return
|
||||||
self.core.command_join(row['jid'])
|
self.core.command_join(row[1])
|
||||||
|
|
||||||
@refresh_wrapper.always
|
@refresh_wrapper.always
|
||||||
def reset_help_message(self, _=None):
|
def reset_help_message(self, _=None):
|
||||||
|
|
Loading…
Reference in a new issue