Skip to content

Commit

Permalink
Merge pull request #4249 from nextcloud/bugfix/noid/appsallowlist
Browse files Browse the repository at this point in the history
fix: Do not apply an empty allow list if none is set
  • Loading branch information
szaimen authored Feb 19, 2024
2 parents 0befd81 + dacd48c commit 4a121ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Containers/nextcloud/config/apps.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
'writable' => true,
),
),
'appsallowlist' => getenv('APPS_ALLOWLIST') ? explode(" ", getenv('APPS_ALLOWLIST')) : [],
'appsallowlist' => getenv('APPS_ALLOWLIST') ? explode(" ", getenv('APPS_ALLOWLIST')) : false,
);

0 comments on commit 4a121ed

Please sign in to comment.