From 42e40e2823affd2d8f05ce7f07d95726f9c2d5b1 Mon Sep 17 00:00:00 2001 From: Timendum Date: Tue, 28 Sep 2021 11:15:41 +0200 Subject: [PATCH] [PicukiBridge] Fix image URLs in content (#2282) URLs in Picuki are already absolute --- bridges/PicukiBridge.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bridges/PicukiBridge.php b/bridges/PicukiBridge.php index e604c128..6fa4d0a5 100644 --- a/bridges/PicukiBridge.php +++ b/bridges/PicukiBridge.php @@ -59,11 +59,7 @@ class PicukiBridge extends BridgeAbstract $is_video = (bool) $element->find('.video-icon', 0); $item['content'] = ($is_video) ? '(video) ' : ''; - $item['content'] .= str_replace( - 'src="', - 'src="' . trim(self::URI, '/'), - $element->find('.photo', 0)->outertext - ); + $item['content'] .= $element->find('.photo', 0)->outertext; $item['enclosures'] = array( // just add `.jpg` extension to get the correct mime type. All Instagram posts are JPG