nextcloud: config files: do not compare against false

Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
Simon L. 2024-08-09 16:36:16 +02:00
parent 164d4fb997
commit 151b05ec01
3 changed files with 7 additions and 7 deletions

View file

@ -13,6 +13,6 @@ $CONFIG = array (
),
),
);
if (getenv('APPS_ALLOWLIST') !== false) {
if (getenv('APPS_ALLOWLIST')) {
$CONFIG['appsallowlist'] = explode(" ", getenv('APPS_ALLOWLIST'));
}