We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9712b4 + dbb5705 commit 2f4a8bbCopy full SHA for 2f4a8bb
1 file changed
lib/private/AppConfig.php
@@ -876,8 +876,12 @@ private function setTypedValue(
876
$type |= self::VALUE_SENSITIVE;
877
}
878
879
- if ($lazy !== $this->isLazy($app, $key)) {
880
- $refreshCache = true;
+ try {
+ if ($lazy !== $this->isLazy($app, $key)) {
881
+ $refreshCache = true;
882
+ }
883
+ } catch (AppConfigUnknownKeyException) {
884
+ // pass
885
886
887
$update = $this->connection->getQueryBuilder();
0 commit comments