brave fix

This commit is contained in:
lolcat 2024-10-29 21:29:17 -04:00
parent 9c18753ec3
commit 070f9d442b
2 changed files with 41 additions and 3 deletions

View file

@ -293,8 +293,8 @@ class brave{
/*
$handle = fopen("scraper/brave.html", "r");
$html = fread($handle, filesize("scraper/brave.html"));
fclose($handle);
*/
fclose($handle);*/
try{
$html =
@ -410,10 +410,20 @@ class brave{
throw new Exception("Could not grep JavaScript object");
}
$data =
rtrim(
preg_replace(
'/\(Array\(0\)\)\).*$/',
"",
$grep[1]
),
" ]"
) . "]";
$data =
$this->fuckhtml
->parseJsObject(
$grep[1]
$data
);
unset($grep);