diff --git a/bridges/GithubSearchBridge.php b/bridges/GithubSearchBridge.php index fe8a721a..54385598 100644 --- a/bridges/GithubSearchBridge.php +++ b/bridges/GithubSearchBridge.php @@ -20,11 +20,11 @@ class GithubSearchBridge extends BridgeAbstract { 'o' => 'desc', 'type' => 'Repositories'); $url = self::URI . 'search?' . http_build_query($params); - + $html = getSimpleHTMLDOM($url) or returnServerError('Error while downloading the website content'); - foreach($html->find('div.repo-list-item') as $element) { + foreach($html->find('li.repo-list-item') as $element) { $item = array(); $uri = $element->find('h3 a', 0)->href;