mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
refactor: use Json::encode instead of json_encode (#3724)
This commit is contained in:
parent
69da0dd583
commit
547af0d0d2
@ -54,7 +54,7 @@ function getContents(
|
|||||||
|
|
||||||
$requestBodyHash = null;
|
$requestBodyHash = null;
|
||||||
if (isset($curlOptions[CURLOPT_POSTFIELDS])) {
|
if (isset($curlOptions[CURLOPT_POSTFIELDS])) {
|
||||||
$requestBodyHash = md5(json_encode($curlOptions[CURLOPT_POSTFIELDS]));
|
$requestBodyHash = md5(Json::encode($curlOptions[CURLOPT_POSTFIELDS], false));
|
||||||
}
|
}
|
||||||
$cacheKey = implode('_', ['server', $url, $requestBodyHash]);
|
$cacheKey = implode('_', ['server', $url, $requestBodyHash]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user