mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[VkBridge] Fix single photo duplication (#3816)
This commit is contained in:
parent
206edaedf5
commit
f3df283c4d
@ -315,6 +315,13 @@ class VkBridge extends BridgeAbstract
|
||||
$copy_quote->outertext = "<br>Reposted ($copy_quote_author): <br>$copy_quote_content";
|
||||
}
|
||||
|
||||
foreach ($post->find('.PrimaryAttachment .PhotoPrimaryAttachment') as $pa) {
|
||||
$img = $pa->find('.PhotoPrimaryAttachment__imageElement', 0);
|
||||
if (is_object($img)) {
|
||||
$pa->outertext = $img->outertext;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($post->find('.SecondaryAttachment') as $sa) {
|
||||
$sa_href = $sa->getAttribute('href');
|
||||
if (!$sa_href) {
|
||||
|
Loading…
Reference in New Issue
Block a user