From 0862d6cfb03f5f07c9e2a15e72858872c0c26b00 Mon Sep 17 00:00:00 2001 From: Matt Tuchfarber Date: Thu, 7 Mar 2019 00:10:55 -0500 Subject: [PATCH] Fix empty file wording in error log Changing empty file error text so that it reads correctly. --- src/libsync/propagatedownload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2