Merge branch 'muc-close-inexisting-bookmarks' into 'master'

Muc close inexisting bookmarks

See merge request poezio/poezio!147
This commit is contained in:
Maxime Buquet 2020-06-24 18:54:49 +02:00
commit 6fb1a27674
2 changed files with 3 additions and 0 deletions

View file

@ -8,6 +8,7 @@ https://dev.louiz.org/projects/poezio/roadmap
- Reorder: Prevent GapTabs from being serialized and ignore when serialized as
they're recreated automatically.
- Ensure bookmark is present before removing it in /close.
# Bug fixes

View file

@ -1530,6 +1530,8 @@ class MucTab(ChatTab):
"""
self.leave_room(msg)
if config.get('synchronise_open_rooms'):
if self.jid not in self.core.bookmarks:
return
self.core.bookmarks[self.jid].autojoin = False
self.core.bookmarks.save(self.core.xmpp)
self.core.close_tab(self)