No need to check for case preserving filesystem here.

That is done in the utility function instead.
This commit is contained in:
Klaas Freitag 2014-05-26 18:18:32 +02:00
parent 6017eb7ca6
commit 449c00f019

View file

@ -439,7 +439,7 @@ void PropagateDownloadFileQNAM::start()
qDebug() << Q_FUNC_INFO << _item._file << _propagator->_activeJobs;
// do a case clash check.
if( Utility::fsCasePreserving() && _propagator->localFileNameClash(_item._file) ) {
if( _propagator->localFileNameClash(_item._file) ) {
done( SyncFileItem::NormalError, tr("File %1 can not be downloaded because of a local file name clash!")
.arg(QDir::toNativeSeparators(_item._file)) );
return;