Fix page request

This commit is contained in:
Kirill Kotikov 2020-03-21 05:01:45 +03:00 committed by GitHub
parent 7c71377af0
commit 7b73f3217f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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();