mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[GooglePlusPostBridge] Skip posts without message
This commit is contained in:
parent
53278b2eed
commit
53bdfa3bf0
@ -57,6 +57,11 @@ class GooglePlusPostBridge extends BridgeAbstract{
|
||||
|
||||
$message = $post->find('div[jsname=EjRJtf]', 0);
|
||||
|
||||
// Empty messages are not supported right now
|
||||
if(!$message) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$item['content'] = '<div style="float: left; padding: 0 10px 10px 0;"><a href="'
|
||||
. $this->url
|
||||
. '"><img align="top" alt="'
|
||||
|
Loading…
Reference in New Issue
Block a user