Skip to content

Commit

Permalink
PAYOSWXP-116: fix array to string conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
rommelfreddy committed Jan 24, 2024
1 parent 14836c5 commit f3bc92c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private function getForwardRequests(\CurlMultiHandle $multiHandle, EntitySearchR

$serialize = unserialize($forward->getContent(), []);
/** @var array<int, string>|string|false $content */
$content = mb_convert_encoding((string) $serialize, 'ISO-8859-1', 'UTF-8');
$content = mb_convert_encoding($serialize, 'ISO-8859-1', 'UTF-8');

if (!\is_array($content)) {
continue;
Expand Down

0 comments on commit f3bc92c

Please sign in to comment.