From dd903d447f74b59d1094a223c8f52fe005ef579f Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Mon, 27 Nov 2017 21:09:13 +0100 Subject: [PATCH] [CSE] Store the encryption status without the webdav url The Folder information on the desktop client doesn't knows about the webdav layout aparently. --- src/libsync/clientsideencryption.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/clientsideencryption.cpp b/src/libsync/clientsideencryption.cpp index fedf2eb46f..a0de1ea144 100644 --- a/src/libsync/clientsideencryption.cpp +++ b/src/libsync/clientsideencryption.cpp @@ -1205,7 +1205,7 @@ bool GetFolderEncryptStatus::finished() } if (!currFile.isEmpty() && currEncryptedStatus != -1) { - folderStatus.insert(currFile, currEncryptedStatus); + folderStatus.insert(currFile.remove("/remote.php/webdav/"), currEncryptedStatus); currFile.clear(); currEncryptedStatus = -1; }