Fix hard-coded boolean in CsvBulkLoader

This commit is contained in:
Colin Tucker 2016-12-06 16:08:00 +11:00
parent 0821310207
commit 3fca7b3c4d

View File

@ -70,7 +70,7 @@ class CsvBulkLoader extends BulkLoader {
foreach ($files as $file) {
$last = $file;
$next = $this->processChunk($file, false);
$next = $this->processChunk($file, $preview);
if ($result instanceof BulkLoader_Result) {
$result->merge($next);