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

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,
);