Skip to content

Commit

Permalink
[DealabsBridge] Follow website change (#1256)
Browse files Browse the repository at this point in the history
A minor website change broke the Bridge. This commit fix it
  • Loading branch information
sysadminstory authored and teromene committed Aug 26, 2019
1 parent a86a945 commit f3c6876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/DealabsBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ protected function collectDeals($url){
} else {
foreach ($list as $deal) {
$item = array();
$item['uri'] = $deal->find('div[class=threadGrid-title]', 0)->find('a', 0)->href;
$item['uri'] = $deal->find('div[class*=threadGrid-title]', 0)->find('a', 0)->href;
$item['title'] = $deal->find('a[class*=' . $selectorLink . ']', 0
)->plaintext;
$item['author'] = $deal->find('span.thread-username', 0)->plaintext;
Expand Down

0 comments on commit f3c6876

Please sign in to comment.