Import: apply modifiers only when fetching data

This commit is contained in:
Thomas Gelf 2018-01-26 13:01:39 +01:00
parent 8ab088fe18
commit 765b08f597
1 changed files with 1 additions and 1 deletions

View File

@ -164,9 +164,9 @@ class Import
$this->data = ImportSourceHook::forImportSource(
$this->source
)->fetchData();
$this->source->applyModifiers($this->data);
}
$this->source->applyModifiers($this->data);
return $this->data;
}