[VkBridge] Fix single photo duplication (#3816)

This commit is contained in:
Eugene Molotov 2023-12-03 22:54:23 +05:00 committed by GitHub
parent 206edaedf5
commit f3df283c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -315,6 +315,13 @@ class VkBridge extends BridgeAbstract
$copy_quote->outertext = "<br>Reposted ($copy_quote_author): <br>$copy_quote_content"; $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) { foreach ($post->find('.SecondaryAttachment') as $sa) {
$sa_href = $sa->getAttribute('href'); $sa_href = $sa->getAttribute('href');
if (!$sa_href) { if (!$sa_href) {