Invalidate cached setting

This commit is contained in:
slawkens 2024-07-09 23:33:00 +02:00
parent 203e411b62
commit 5f63c3b227

View File

@ -382,6 +382,8 @@ class Settings implements \ArrayAccess
}
$this->settingsDatabase[$pluginKeyName][$key] = $value;
// invalidate cache
unset($this->cache[$offset]);
}
#[\ReturnTypeWillChange]