Skip to content
Snippets Groups Projects
Commit cadaac04 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Settings: Fix deleting contact and group chat settings

parent 841556be
No related branches found
No related tags found
No related merge requests found
......@@ -661,7 +661,7 @@ def set_group_chat_setting(self,
if value is None:
try:
del self._account_settings[account]['group_chat'][setting]
del self._account_settings[account]['group_chat'][jid][setting]
except KeyError:
pass
......@@ -736,7 +736,7 @@ def set_contact_setting(self,
if value is None:
try:
del self._account_settings[account]['contact'][setting]
del self._account_settings[account]['contact'][jid][setting]
except KeyError:
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment