From f3df283c4d93a90f81bda7c466e8b9937f178acf Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Sun, 3 Dec 2023 22:54:23 +0500 Subject: [PATCH] [VkBridge] Fix single photo duplication (#3816) --- bridges/VkBridge.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bridges/VkBridge.php b/bridges/VkBridge.php index 60e4315b..503bc4d0 100644 --- a/bridges/VkBridge.php +++ b/bridges/VkBridge.php @@ -315,6 +315,13 @@ class VkBridge extends BridgeAbstract $copy_quote->outertext = "
Reposted ($copy_quote_author):
$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) {