Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/folder.cpp')
-rw-r--r--src/gui/folder.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp
index c97406edc..9708be831 100644
--- a/src/gui/folder.cpp
+++ b/src/gui/folder.cpp
@@ -537,7 +537,8 @@ void Folder::startVfs()
}
VfsSetupParams vfsParams;
- vfsParams.filesystemPath = path();
+ vfsParams.uuid = uuid();
+ vfsParams.filesystemPath = path(); // This is ignored by the macOS VFS plug-in
vfsParams.remotePath = remotePathTrailingSlash();
vfsParams.account = _accountState->account();
vfsParams.journal = &_journal;