fix: Do not apply an empty allow list if none is set

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2024-02-19 16:09:51 +01:00
parent 0befd813d9
commit dacd48cfd0
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

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