let auto tests of batch upload return proper file paths

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
Matthieu Gallien 2021-11-25 16:46:10 +01:00
Родитель e14502606c
Коммит 18ef471332
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -488,7 +488,7 @@ void FakePutMultiFileReply::respond()
fileInfoReply.insert("OC-FileID", QLatin1String{fileInfo->fileId});
fileInfoReply.insert("X-OC-MTime", "accepted"); // Prevents Q_ASSERT(!_runningNow) since we'll call PropagateItemJob::done twice in that case.
emit uploadProgress(fileInfo->size, totalSize);
allFileInfoReply.insert(fileInfo->path(), fileInfoReply);
allFileInfoReply.insert(QChar('/') + fileInfo->path(), fileInfoReply);
}
reply.setObject(allFileInfoReply);
_payload = reply.toJson();