mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 03:49:20 +03:00
Revert "propagator: Do not check for case clash when renaming"
This caused test regressions in t8.pl (#2318)
This reverts commit dad8c1c27c
.
This commit is contained in:
parent
f1006ca8b0
commit
08156186fa
1 changed files with 7 additions and 0 deletions
|
@ -247,6 +247,13 @@ void PropagateLocalRename::start()
|
|||
qDebug() << "MOVE " << _propagator->_localDir + _item._file << " => " << _propagator->_localDir + _item._renameTarget;
|
||||
QFile file(_propagator->_localDir + _item._file);
|
||||
|
||||
if (_propagator->localFileNameClash(_item._renameTarget)) {
|
||||
// Fixme: the file that is the reason for the clash could be named here,
|
||||
// it would have to come out the localFileNameClash function
|
||||
done(SyncFileItem::NormalError, tr( "File %1 can not be renamed to %2 because of a local file name clash")
|
||||
.arg(QDir::toNativeSeparators(_item._file)).arg(QDir::toNativeSeparators(_item._renameTarget)) );
|
||||
return;
|
||||
}
|
||||
if (!file.rename(_propagator->_localDir + _item._file, _propagator->_localDir + _item._renameTarget)) {
|
||||
done(SyncFileItem::NormalError, file.errorString());
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue