Merge pull request #50427 from nextcloud/backport/50426/stable31

[stable31] fix(occ): hide sensitive data while config:app:set
This commit is contained in:
Andy Scherzinger 2025-01-25 19:03:32 +01:00 committed by GitHub
commit cac5830746
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -217,7 +217,7 @@ class SetConfig extends Base {
"<info>Config value '%s' for app '%s' is now set to '%s', stored as %s in %s</info>",
$configName,
$appName,
$current['value'],
$current['sensitive'] ? '<sensitive>' : $current['value'],
$current['typeString'],
$current['lazy'] ? 'lazy cache' : 'fast cache'
)