From 151b05ec014122311be55b26927b98dee6601e73 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Fri, 9 Aug 2024 16:36:16 +0200 Subject: [PATCH] nextcloud: config files: do not compare against false Signed-off-by: Simon L. --- Containers/nextcloud/config/apps.config.php | 2 +- Containers/nextcloud/config/proxy.config.php | 8 ++++---- Containers/nextcloud/config/redis.config.php | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Containers/nextcloud/config/apps.config.php b/Containers/nextcloud/config/apps.config.php index 6ccf8932b16..c890e78702f 100644 --- a/Containers/nextcloud/config/apps.config.php +++ b/Containers/nextcloud/config/apps.config.php @@ -13,6 +13,6 @@ ), ), ); -if (getenv('APPS_ALLOWLIST') !== false) { +if (getenv('APPS_ALLOWLIST')) { $CONFIG['appsallowlist'] = explode(" ", getenv('APPS_ALLOWLIST')); } diff --git a/Containers/nextcloud/config/proxy.config.php b/Containers/nextcloud/config/proxy.config.php index c784847493a..c283f86e6c1 100644 --- a/Containers/nextcloud/config/proxy.config.php +++ b/Containers/nextcloud/config/proxy.config.php @@ -1,13 +1,13 @@