fix(legacy): ensure options is a dict during json encoding
This commit is contained in:
parent
6a626a61fc
commit
440ad29015
|
@ -115,7 +115,7 @@ class Application_Model_RabbitMq
|
|||
$data['import_directory'] = $importedStorageDirectory;
|
||||
$data['original_filename'] = $originalFilename;
|
||||
|
||||
$options = [];
|
||||
$options = new stdClass();
|
||||
|
||||
if ($fileTrackTypeId) {
|
||||
$fileTrackType = new Application_Model_Tracktype($fileTrackTypeId);
|
||||
|
|
Loading…
Reference in New Issue