mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-12-22 22:31:53 +00:00
fix(problem/remote): problem crawler
This commit is contained in:
parent
0aacb14b9b
commit
92793969af
@ -240,7 +240,7 @@ class UOJRemoteProblem {
|
||||
if (!$res) return null;
|
||||
|
||||
$dom = new \IvoPetkov\HTML5DOMDocument();
|
||||
$dom->loadHTML($res);
|
||||
$dom->loadHTML($res['response']);
|
||||
$container_dom = $dom->querySelectorAll('#main-container > div.row > div.col-sm-12')->item(1);
|
||||
|
||||
if (!$container_dom) return null;
|
||||
@ -315,7 +315,7 @@ class UOJRemoteProblem {
|
||||
if (!$res) return null;
|
||||
|
||||
$dom = new \IvoPetkov\HTML5DOMDocument();
|
||||
$dom->loadHTML($res);
|
||||
$dom->loadHTML($res['response']);
|
||||
|
||||
$title_dom = $dom->querySelector('.page-header');
|
||||
$title_matches = [];
|
||||
|
Loading…
Reference in New Issue
Block a user