From a63f0e9a93d96c53b04b80a963fbf295efd8a123 Mon Sep 17 00:00:00 2001 From: beu Date: Wed, 27 Apr 2022 09:52:53 +0200 Subject: [PATCH] add the missing ! --- core/Settings/SettingManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Settings/SettingManager.php b/core/Settings/SettingManager.php index c4a1fe0a..cc1aee16 100644 --- a/core/Settings/SettingManager.php +++ b/core/Settings/SettingManager.php @@ -130,7 +130,7 @@ class SettingManager implements CallbackListener, UsageInformationAble { * @return bool */ private function deleteUnusedSettings() { - if ($this->getSettingValue($this, self::SETTING_DELETE_UNUSED_SETTING_AT_START)) { + if (!$this->getSettingValue($this, self::SETTING_DELETE_UNUSED_SETTING_AT_START)) { return; }