fix(legacy): don't use dict assignment on object (#2384)
This commit is contained in:
parent
440ad29015
commit
63c4233833
|
@ -119,7 +119,7 @@ class Application_Model_RabbitMq
|
||||||
|
|
||||||
if ($fileTrackTypeId) {
|
if ($fileTrackTypeId) {
|
||||||
$fileTrackType = new Application_Model_Tracktype($fileTrackTypeId);
|
$fileTrackType = new Application_Model_Tracktype($fileTrackTypeId);
|
||||||
$options['analyze_cue_points'] = $fileTrackType->getAnalyzeCuePoints();
|
$options->analyze_cue_points = $fileTrackType->getAnalyzeCuePoints();
|
||||||
}
|
}
|
||||||
|
|
||||||
$data['options'] = $options;
|
$data['options'] = $options;
|
||||||
|
|
Loading…
Reference in New Issue