1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-30 21:30:14 +02:00

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

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