diff --git a/owrx/controllers/settings/sdr.py b/owrx/controllers/settings/sdr.py index 0243850..a655a6d 100644 --- a/owrx/controllers/settings/sdr.py +++ b/owrx/controllers/settings/sdr.py @@ -255,6 +255,8 @@ class SdrDeviceController(SdrFormControllerWithModal): config = Config.get() sdrs = config["sdrs"] del sdrs[self.device_id] + # need to overwrite the existing key in the config since the layering won't capture the changes otherwise + config["sdrs"] = sdrs config.store() return self.send_redirect("{}settings/sdr".format(self.get_document_root()))