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:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-09-28 12:40:22 +0300
committerHannah von Reth <vonreth@kde.org>2021-09-28 18:25:31 +0300
commit13bc7d51395f50a8584fa09eb3ae2267d7dbd38e (patch)
tree7e292a7ce3ad5e2b0ece0e236af7453525a6d928 /src/common
parent945bccdeefcd003cc044020331b219990987a4bc (diff)
Fix dehydration of read only files
Diffstat (limited to 'src/common')
-rw-r--r--src/common/filesystembase.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/filesystembase.cpp b/src/common/filesystembase.cpp
index 46c7f6640..d349d31de 100644
--- a/src/common/filesystembase.cpp
+++ b/src/common/filesystembase.cpp
@@ -374,6 +374,7 @@ bool FileSystem::remove(const QString &fileName, QString *errorString)
if (errorString) {
*errorString = f.errorString();
}
+ qCWarning(lcFileSystem) << "Failed to delete:" << fileName << "Error:" << f.errorString();
return false;
}
return true;