Merge branch 'TwitterWithoutPromotedTweets'

Closes #556
This commit is contained in:
logmanoriginal 2017-08-03 18:26:06 +02:00
commit c7ec50373a

View file

@ -106,6 +106,14 @@ class TwitterBridge extends BridgeAbstract {
$invisible->outertext = '';
}
// Skip protmoted tweets
$heading = $tweet->previousSibling();
if(!is_null($heading) &&
$heading->getAttribute('class') === 'promoted-tweet-heading'
) {
continue;
}
$item = array();
// extract username and sanitize
$item['username'] = $tweet->getAttribute('data-screen-name');