mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-05 16:17:28 +02:00
[VkBridge] Fix missing feed title (#3737)
This commit is contained in:
@@ -76,10 +76,10 @@ class VkBridge extends BridgeAbstract
|
||||
break;
|
||||
}
|
||||
}
|
||||
$pageName = $html->find('.page_name', 0);
|
||||
$pageName = $html->find('meta[property="og:title"]', 0);
|
||||
if (is_object($pageName)) {
|
||||
$pageName = $pageName->plaintext;
|
||||
$this->pageName = htmlspecialchars_decode($pageName);
|
||||
$pageName = $pageName->getAttribute('content');
|
||||
$this->pageName = $pageName;
|
||||
}
|
||||
foreach ($html->find('div.replies') as $comment_block) {
|
||||
$comment_block->outertext = '';
|
||||
|
Reference in New Issue
Block a user