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) {