Merge pull request #4249 from nextcloud/bugfix/noid/appsallowlist

fix: Do not apply an empty allow list if none is set
This commit is contained in:
Simon L 2024-02-19 16:16:14 +01:00 committed by GitHub
commit 4a121ed613
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,5 +12,5 @@ $CONFIG = array (
'writable' => true,
),
),
'appsallowlist' => getenv('APPS_ALLOWLIST') ? explode(" ", getenv('APPS_ALLOWLIST')) : [],
'appsallowlist' => getenv('APPS_ALLOWLIST') ? explode(" ", getenv('APPS_ALLOWLIST')) : false,
);