Skip to content

Commit

Permalink
PAYOSWXP-121: Fixes Notification Forward: failed: Warning: Array to s…
Browse files Browse the repository at this point in the history
…tring conversion
  • Loading branch information
amirinterlutions committed Jan 28, 2024
1 parent 8b88958 commit 1c0466a
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 1c0466a

Please sign in to comment.