diff options
author | derschiw <37687705+derschiw@users.noreply.github.com> | 2024-05-08 21:01:05 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-05-13 10:37:17 +0200 |
commit | 28807b2a12ba461679705c86b51ac9810c0683a9 (patch) | |
tree | 514a0b76d9268028d11fb8aa60250bc1231abb14 /lib/private | |
parent | 7d05983622a240fbc74705fbe48b2f503c5e04f4 (diff) | |
download | nextcloud-server-28807b2a12ba461679705c86b51ac9810c0683a9.tar.gz nextcloud-server-28807b2a12ba461679705c86b51ac9810c0683a9.zip |
fix(SystemConfig.php): Add 'updater.server.url' to Private Variables
Add "updater.server.url" to the privacy redacted values, as it may contain the enterprise key.
Signed-off-by: derschiw <37687705+derschiw@users.noreply.github.com>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/SystemConfig.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index f63663fbfe3..b1d120574c3 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -54,6 +54,7 @@ class SystemConfig { 'passwordsalt' => true, 'secret' => true, 'updater.secret' => true, + 'updater.server.url' => true, 'trusted_proxies' => true, 'preview_imaginary_url' => true, 'proxyuserpwd' => true, |