mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
fix(gates): json decoding (#3937)
This commit is contained in:
parent
c4fceab7b3
commit
b2c8475b2c
@ -20,12 +20,9 @@ class GatesNotesBridge extends BridgeAbstract
|
|||||||
$apiUrl = self::URI . $api_endpoint . http_build_query($params);
|
$apiUrl = self::URI . $api_endpoint . http_build_query($params);
|
||||||
|
|
||||||
$rawContent = getContents($apiUrl);
|
$rawContent = getContents($apiUrl);
|
||||||
$cleanedContent = str_replace([
|
$cleanedContent = trim($rawContent, '"');
|
||||||
'<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">',
|
$cleanedContent = str_replace('\r\n', "\n", $cleanedContent);
|
||||||
'</string>',
|
$cleanedContent = stripslashes($cleanedContent);
|
||||||
], '', $rawContent);
|
|
||||||
// $cleanedContent = str_replace('\"', '"', $cleanedContent);
|
|
||||||
// $cleanedContent = trim($cleanedContent, '"');
|
|
||||||
|
|
||||||
$json = Json::decode($cleanedContent, false);
|
$json = Json::decode($cleanedContent, false);
|
||||||
if (is_string($json)) {
|
if (is_string($json)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user