From a6c3f8dd49da2290cd0718ec98f7effff39fcdf1 Mon Sep 17 00:00:00 2001 From: Benjamin Gaussorgues Date: Mon, 5 Feb 2024 11:24:12 +0100 Subject: [PATCH] fix(files_external): list root when using SMB case-insensitive option Signed-off-by: Benjamin Gaussorgues --- apps/files_external/lib/Lib/Storage/SMB.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Storage/SMB.php b/apps/files_external/lib/Lib/Storage/SMB.php index a83887fcda6d9..34d7585f6e923 100644 --- a/apps/files_external/lib/Lib/Storage/SMB.php +++ b/apps/files_external/lib/Lib/Storage/SMB.php @@ -676,7 +676,8 @@ public function mkdir($path) { public function file_exists($path) { try { - if ($this->caseSensitive === false) { + // Case sensitive filesystem doesn't matter for root directory + if ($this->caseSensitive === false && $path !== '') { $filename = basename($path); $siblings = $this->getDirectoryContent(dirname($this->buildPath($path))); foreach ($siblings as $sibling) {