Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2dc02f50 authored by Adam Tauber's avatar Adam Tauber
Browse files

[fix] do not save engine/plugin cookies as unknown settings options - fixes #1110

parent 7752b0a8
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -304,7 +304,12 @@ class Preferences(object):
            elif user_setting_name == 'disabled_plugins':
                self.plugins.parse_cookie((input_data.get('disabled_plugins', ''),
                                           input_data.get('enabled_plugins', '')))
            else:
            elif not any(user_setting_name.startswith(x) for x in [
                    'enabled_',
                    'disabled_',
                    'engine_',
                    'category_',
                    'plugin_']):
                self.unknown_params[user_setting_name] = user_setting

    def parse_form(self, input_data):