From ec77ecfd0f89d21f88519f660baf94a5fc8f603c Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Thu, 12 Dec 2013 12:21:24 +0100 Subject: [PATCH] Show error reason for blacklisted files in sync activity. --- src/mirall/csyncthread.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mirall/csyncthread.cpp b/src/mirall/csyncthread.cpp index 688b97daa..01eefa6ec 100644 --- a/src/mirall/csyncthread.cpp +++ b/src/mirall/csyncthread.cpp @@ -235,7 +235,9 @@ bool CSyncThread::checkBlacklisting( SyncFileItem *item ) if( re ) { qDebug() << "Item is on blacklist: " << entry._file << "retries:" << entry._retryCount; item->_instruction = CSYNC_INSTRUCTION_IGNORE; - item->_errorString = tr("The item is not synced because of previous errors."); + // FIXME: put the error string into an .arg(..) later + item->_errorString = tr("The item is not synced because of previous errors:") + + QLatin1String(" ")+ entry._errorString; slotProgress( Progress::SoftError, *item ); } }