diff options
-rw-r--r-- | src/core/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/commands.py b/src/core/commands.py index cacd474b..916f078a 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -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 |