[GlassdoorBridge] Fix incorrect CSS selector
This commit is contained in:
parent
bcd7bccc46
commit
37d882a8d5
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ class GlassdoorBridge extends BridgeAbstract {
|
||||||
$item['title'] = $post->find('header', 0)->plaintext;
|
$item['title'] = $post->find('header', 0)->plaintext;
|
||||||
$item['content'] = $post->find('div[class="excerpt-content"]', 0)->plaintext;
|
$item['content'] = $post->find('div[class="excerpt-content"]', 0)->plaintext;
|
||||||
$item['enclosures'] = array(
|
$item['enclosures'] = array(
|
||||||
$this->getFullSizeImageURI($post->find('div[class="post-thumb"]', 0)->{'data-original'})
|
$this->getFullSizeImageURI($post->find('div[class*="post-thumb"]', 0)->{'data-original'})
|
||||||
);
|
);
|
||||||
|
|
||||||
// optionally load full articles
|
// optionally load full articles
|
||||||
|
|
Loading…
Reference in a new issue