Fix a bug in /bookmark
This commit is contained in:
parent
2583b6a934
commit
5fc1f9728a
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ def _add_bookmark(self, jid, autojoin, password, method):
|
|||
return _add_wildcard_bookmarks(self, method)
|
||||
else:
|
||||
info = safeJID(jid)
|
||||
roomname, nick = info.resource = info.bare, info.resource
|
||||
roomname, nick = info.bare, info.resource
|
||||
if roomname == '':
|
||||
if not isinstance(self.current_tab(), tabs.MucTab):
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue