1
0
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:
Eugene Molotov
2023-10-11 21:28:54 +05:00
committed by GitHub
parent 145bd10f4c
commit 7e183915a9

View File

@@ -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 = '';