Skip to content

Commit 3aef83b

Browse files
Merge pull request #62280 from nextcloud/backport/61622/stable33
[stable33] fix(files_external/SMB): Use 'null' explicitly for no workgroup
2 parents 05cc8d9 + 3b804d8 commit 3aef83b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/files_external/lib/Lib/Backend

apps/files_external/lib/Lib/Backend/SMB.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function manipulateStorageConfig(StorageConfig &$storage, ?IUser $user =
6969

7070
$smbAuth = new BasicAuth(
7171
$storage->getBackendOption('user'),
72-
$storage->getBackendOption('domain'),
72+
$storage->getBackendOption('domain') ?: null,
7373
$storage->getBackendOption('password')
7474
);
7575
} else {

0 commit comments

Comments
 (0)