1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2025-05-09 14:34:07 +02:00

Merge pull request from tuchfarber/tuchfarber/fix_empty_file_error_wording

Fix empty file wording in error log (small)
This commit is contained in:
Camila Ayres 2019-04-12 17:08:27 +02:00 committed by GitHub
commit f520d7364d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}