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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamila Ayres <smayres@gmail.com>2019-04-12 18:08:27 +0300
committerGitHub <noreply@github.com>2019-04-12 18:08:27 +0300
commitf520d7364d59b6995c7798ce44433adda7c261a9 (patch)
tree1d6f0e4e6bb6de5a3ca810c7ed9651350a8d0575
parentac6ef500ccb60557f0eec79b6e7fcb96833ceeab (diff)
parent4d61a7c26386b631d2ac1d8ddc75149752728fd9 (diff)
Merge pull request #1118 from tuchfarber/tuchfarber/fix_empty_file_error_wording
Fix empty file wording in error log (small)
-rw-r--r--src/libsync/propagatedownload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/propagatedownload.cpp b/src/libsync/propagatedownload.cpp
index fd181f96e..07c7c5f18 100644
--- a/src/libsync/propagatedownload.cpp
+++ b/src/libsync/propagatedownload.cpp
@@ -659,7 +659,7 @@ void PropagateDownloadFile::slotGetFinished()
if (_tmpFile.size() == 0 && _item->_size > 0) {
FileSystem::remove(_tmpFile.fileName());
done(SyncFileItem::NormalError,
- tr("The downloaded file is empty despite the server announced it should have been %1.")
+ tr("The downloaded file is empty despite that the server announced it should have been %1.")
.arg(Utility::octetsToString(_item->_size)));
return;
}