diff --git a/src/octoprint/plugin/types.py b/src/octoprint/plugin/types.py index 87a4f232..71fb2d2b 100644 --- a/src/octoprint/plugin/types.py +++ b/src/octoprint/plugin/types.py @@ -1356,7 +1356,7 @@ class SettingsPlugin(OctoPrintPlugin): try: # let's fetch the current persisted config (so only the data on disk, # without the defaults) - config = self._settings.get([], asdict=True, incl_defaults=False, error_on_path=True) + config = self._settings.get_all_data(merged=False, incl_defaults=False, error_on_path=True) except NoSuchSettingsPath: # no config persisted, nothing to do => get out of here return