fix(legacy): don't use dict assignment on object (#2384)

This commit is contained in:
Jonas L 2023-02-21 07:56:14 +01:00 committed by GitHub
parent 440ad29015
commit 63c4233833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class Application_Model_RabbitMq
if ($fileTrackTypeId) {
$fileTrackType = new Application_Model_Tracktype($fileTrackTypeId);
$options['analyze_cue_points'] = $fileTrackType->getAnalyzeCuePoints();
$options->analyze_cue_points = $fileTrackType->getAnalyzeCuePoints();
}
$data['options'] = $options;