mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
PropagateIgnore: Default to NormalError for INSTRUCTION_ERROR
Previously if one set the instruction to ERROR while forgetting to set an error status, it'd propagate as FileIgnored. Now the default is NormalError for INSTRUCTION_ERROR and FileIgnored for INSTRUCTION_IGNORE.
This commit is contained in:
parent
da40e84aec
commit
7b96321df2
3 changed files with 9 additions and 5 deletions
|
@ -382,7 +382,6 @@ void ProcessDirectoryJob::processFileAnalyzeRemoteInfo(
|
|||
missingData.append(tr("file id"));
|
||||
if (!missingData.isEmpty()) {
|
||||
item->_instruction = CSYNC_INSTRUCTION_ERROR;
|
||||
item->_status = SyncFileItem::NormalError;
|
||||
_childIgnored = true;
|
||||
item->_errorString = tr("server reported no %1").arg(missingData.join(QLatin1String(", ")));
|
||||
emit _discoveryData->itemDiscovered(item);
|
||||
|
@ -1145,13 +1144,11 @@ bool ProcessDirectoryJob::checkPermissions(const OCC::SyncFileItemPtr &item)
|
|||
} else if (item->isDirectory() && !perms.hasPermission(RemotePermissions::CanAddSubDirectories)) {
|
||||
qCWarning(lcDisco) << "checkForPermission: ERROR" << item->_file;
|
||||
item->_instruction = CSYNC_INSTRUCTION_ERROR;
|
||||
item->_status = SyncFileItem::NormalError;
|
||||
item->_errorString = tr("Not allowed because you don't have permission to add subfolders to that folder");
|
||||
return false;
|
||||
} else if (!item->isDirectory() && !perms.hasPermission(RemotePermissions::CanAddFile)) {
|
||||
qCWarning(lcDisco) << "checkForPermission: ERROR" << item->_file;
|
||||
item->_instruction = CSYNC_INSTRUCTION_ERROR;
|
||||
item->_status = SyncFileItem::NormalError;
|
||||
item->_errorString = tr("Not allowed because you don't have permission to add files in that folder");
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -350,7 +350,15 @@ public:
|
|||
void start() override
|
||||
{
|
||||
SyncFileItem::Status status = _item->_status;
|
||||
done(status == SyncFileItem::NoStatus ? SyncFileItem::FileIgnored : status, _item->_errorString);
|
||||
if (status == SyncFileItem::NoStatus) {
|
||||
if (_item->_instruction == CSYNC_INSTRUCTION_ERROR) {
|
||||
status = SyncFileItem::NormalError;
|
||||
} else {
|
||||
status = SyncFileItem::FileIgnored;
|
||||
ASSERT(_item->_instruction == CSYNC_INSTRUCTION_IGNORE);
|
||||
}
|
||||
}
|
||||
done(status, _item->_errorString);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -353,7 +353,6 @@ void OCC::SyncEngine::slotItemDiscovered(const OCC::SyncFileItemPtr &item)
|
|||
QString error;
|
||||
if (!_syncOptions._vfs->updateMetadata(filePath, item->_modtime, item->_size, item->_fileId, &error)) {
|
||||
item->_instruction = CSYNC_INSTRUCTION_ERROR;
|
||||
item->_status = SyncFileItem::NormalError;
|
||||
item->_errorString = tr("Could not update virtual file metadata: %1").arg(error);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue