mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[RutubeBridge] Correct parsing string in reduxState
This commit is contained in:
parent
80c43f10d8
commit
73681e54c9
@ -66,7 +66,15 @@ class RutubeBridge extends BridgeAbstract
|
|||||||
{
|
{
|
||||||
$jsonDataRegex = '/window.reduxState = (.*);/';
|
$jsonDataRegex = '/window.reduxState = (.*);/';
|
||||||
preg_match($jsonDataRegex, $html, $matches) or returnServerError('Could not find reduxState');
|
preg_match($jsonDataRegex, $html, $matches) or returnServerError('Could not find reduxState');
|
||||||
return json_decode(str_replace('\x', '\\\x', $matches[1]));
|
$map = [
|
||||||
|
'\x26' => '&',
|
||||||
|
'\x3c' => '<',
|
||||||
|
'\x3d' => '=',
|
||||||
|
'\x3e' => '>',
|
||||||
|
'\x3f' => '?',
|
||||||
|
];
|
||||||
|
$jsonString = str_replace(array_keys($map), array_values($map), $matches[1]);
|
||||||
|
return json_decode($jsonString, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getVideosFromReduxState()
|
private function getVideosFromReduxState()
|
||||||
|
Loading…
Reference in New Issue
Block a user