first item of array should be read due to dropzone returns always an array of files

This commit is contained in:
Sevan Nerse
2021-01-17 16:52:27 +03:00
parent fe97d51e49
commit ec1053bb00
10 changed files with 10 additions and 10 deletions

View File

@ -34,7 +34,7 @@ class CreateItem extends Job
// Upload picture
if ($this->request->file('picture')) {
$media = $this->getMedia($this->request->file('picture'), 'items');
$media = $this->getMedia($this->request->file('picture')[0], 'items');
$this->item->attachMedia($media, 'picture');
}