Skip to content

Commit

Permalink
Merge pull request #14 from maikschneider/release-2.2.2
Browse files Browse the repository at this point in the history
release 2.2.2
  • Loading branch information
github-actions[bot] committed Mar 23, 2023
2 parents c44ba0d + 50f21eb commit 2fcbcd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/DataProcessing/JsonProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function process(
if ($jsonText) {
$json = json_decode($jsonText, true);
if ($json !== null) {
$processedData = array_merge($processedData, (array)$json);
$processedData = array_merge_recursive($processedData, (array)$json);
}
}

Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
'author' => 'Maik Schneider',
'author_email' => '[email protected]',
'author_company' => 'XIMA MEDIA GmbH',
'version' => '2.2.1',
'version' => '2.2.2',
];

0 comments on commit 2fcbcd5

Please sign in to comment.