From: rakekniven Date: Fri, 22 Jan 2021 20:26:56 +0000 (+0100) Subject: Removed blank before colon X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~21^2~408^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c3403b83efada13ec94751bae4e5696ad391a43a;p=nextcloud-desktop.git Removed blank before colon Signed-off-by: rakekniven --- diff --git a/src/libsync/syncengine.cpp b/src/libsync/syncengine.cpp index f0c9d627e..9893058b7 100644 --- a/src/libsync/syncengine.cpp +++ b/src/libsync/syncengine.cpp @@ -349,7 +349,7 @@ void OCC::SyncEngine::slotItemDiscovered(const OCC::SyncFileItemPtr &item) const auto result = _syncOptions._vfs->convertToPlaceholder(filePath, *item); if (!result) { item->_instruction = CSYNC_INSTRUCTION_ERROR; - item->_errorString = tr("Could not update file : %1").arg(result.error()); + item->_errorString = tr("Could not update file: %1").arg(result.error()); return; } }