From b2c8475b2c789de8c70aab5ea7b5b0ae56a2a507 Mon Sep 17 00:00:00 2001 From: Dag Date: Mon, 29 Jan 2024 21:51:23 +0100 Subject: [PATCH] fix(gates): json decoding (#3937) --- bridges/GatesNotesBridge.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/bridges/GatesNotesBridge.php b/bridges/GatesNotesBridge.php index 0d919968..3381e096 100644 --- a/bridges/GatesNotesBridge.php +++ b/bridges/GatesNotesBridge.php @@ -20,12 +20,9 @@ class GatesNotesBridge extends BridgeAbstract $apiUrl = self::URI . $api_endpoint . http_build_query($params); $rawContent = getContents($apiUrl); - $cleanedContent = str_replace([ - '', - '', - ], '', $rawContent); - // $cleanedContent = str_replace('\"', '"', $cleanedContent); - // $cleanedContent = trim($cleanedContent, '"'); + $cleanedContent = trim($rawContent, '"'); + $cleanedContent = str_replace('\r\n', "\n", $cleanedContent); + $cleanedContent = stripslashes($cleanedContent); $json = Json::decode($cleanedContent, false); if (is_string($json)) {