Fix page request
This commit is contained in:
parent
7c71377af0
commit
7b73f3217f
1 changed files with 3 additions and 0 deletions
|
@ -601,6 +601,9 @@ class GithubTrendingBridge extends BridgeAbstract {
|
|||
$params = array('since' => urlencode($this->getInput('date_range')));
|
||||
$url = self::URI . '/' . $this->getInput('language') . '?' . http_build_query($params);
|
||||
|
||||
$html = getSimpleHTMLDOM($url)
|
||||
or returnServerError('Error while downloading the website content');
|
||||
|
||||
$this->items = [];
|
||||
foreach($html->find('.Box-row') as $element) {
|
||||
$item = array();
|
||||
|
|
Loading…
Reference in a new issue