Decode list of events when returning them

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-10-10 15:33:20 +02:00 committed by Arthur Schiwon
parent e72f58b000
commit 6830daf104
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
1 changed files with 2 additions and 0 deletions

View File

@ -561,6 +561,8 @@ class Manager implements IManager {
$operation['checks'][] = $check;
}
$operation['events'] = json_decode($operation['events'], true);
return $operation;
}