mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 03:16:33 +03:00
[MarktplaatsBridge] 'https:' added to img src url (#1713)
This commit is contained in:
parent
25cff9c07b
commit
94576c3053
1 changed files with 2 additions and 2 deletions
|
@ -93,10 +93,10 @@ class MarktplaatsBridge extends BridgeAbstract {
|
|||
if($this->getInput('i')) {
|
||||
if(is_array($listing->imageUrls)) {
|
||||
foreach($listing->imageUrls as $imgurl) {
|
||||
$item['content'] .= "<br />\n<img src='" . $imgurl . "' />";
|
||||
$item['content'] .= "<br />\n<img src='https:" . $imgurl . "' />";
|
||||
}
|
||||
} else {
|
||||
$item['content'] .= "<br>\n<img src='" . $listing->imageUrls . "' />";
|
||||
$item['content'] .= "<br>\n<img src='https:" . $listing->imageUrls . "' />";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue