mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[VkBridge] Handle empty posts before fixing image links (#3052)
This commit is contained in:
parent
6cd8b90d28
commit
2db523a37a
@ -297,6 +297,9 @@ class VkBridge extends BridgeAbstract
|
||||
$item = [];
|
||||
$content = strip_tags(backgroundToImg($post->find('div.wall_text', 0)->innertext), '<a><br><img>');
|
||||
$content .= $content_suffix;
|
||||
if (!$content) {
|
||||
$content = '(empty post)';
|
||||
}
|
||||
$content = str_get_html($content);
|
||||
foreach ($content->find('img') as $img) {
|
||||
$parsed_src = parse_url($img->getAttribute('src'));
|
||||
|
Loading…
Reference in New Issue
Block a user