Skip to content

Commit

Permalink
[GlassdoorBridge] Fix incorrect CSS selector
Browse files Browse the repository at this point in the history
  • Loading branch information
logmanoriginal committed Jan 13, 2019
1 parent bcd7bcc commit 37d882a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/GlassdoorBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ private function collectBlogData($html, $limit) {
$item['title'] = $post->find('header', 0)->plaintext;
$item['content'] = $post->find('div[class="excerpt-content"]', 0)->plaintext;
$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
Expand Down

0 comments on commit 37d882a

Please sign in to comment.