From 2cb085bcc3d732f13f9196723b4c9e80e46c471d Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Thu, 6 Jul 2023 14:19:03 -0100 Subject: [PATCH] fix visibility Signed-off-by: Maxence Lange --- apps/files_external/lib/Service/BackendService.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/files_external/lib/Service/BackendService.php b/apps/files_external/lib/Service/BackendService.php index 7a4fb2d5276c7..007b0edc9a738 100644 --- a/apps/files_external/lib/Service/BackendService.php +++ b/apps/files_external/lib/Service/BackendService.php @@ -50,7 +50,6 @@ class BackendService { /** Priority constants for PriorityTrait */ public const PRIORITY_DEFAULT = 100; - private bool $userMountingAllowed = true; private bool $userUnmountingAllowed = true; @@ -78,7 +77,7 @@ class BackendService { * @param IConfig $config */ public function __construct( - private IConfig $config + protected IConfig $config ) { // Load config values if ($this->config->getAppValue('files_external', 'allow_user_mounting', 'yes') !== 'yes') {