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