summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-04-06 00:30:43 +0200
committermathieui <mathieui@mathieui.net>2014-04-06 00:30:43 +0200
commit964e84e11b0fe0a637fdc11450db9fdc2f85045b (patch)
treece29bf6546c120cbbcd0be2ffd6ff761ea616787 /src
parentf405984f8d00e30ad770c8a48a20129609b7f68a (diff)
downloadpoezio-964e84e11b0fe0a637fdc11450db9fdc2f85045b.tar.gz
poezio-964e84e11b0fe0a637fdc11450db9fdc2f85045b.tar.bz2
poezio-964e84e11b0fe0a637fdc11450db9fdc2f85045b.tar.xz
poezio-964e84e11b0fe0a637fdc11450db9fdc2f85045b.zip
Fix room joining on muclisttab that was broken in the previous commit
Diffstat (limited to 'src')
-rw-r--r--src/tabs/muclisttab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/muclisttab.py b/src/tabs/muclisttab.py
index cefe0460..5a9eea8b 100644
--- a/src/tabs/muclisttab.py
+++ b/src/tabs/muclisttab.py
@@ -154,7 +154,7 @@ class MucListTab(Tab):
row = self.listview.get_selected_row()
if not row:
return
- self.core.command_join(row['jid'])
+ self.core.command_join(row[1])
@refresh_wrapper.always
def reset_help_message(self, _=None):