mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 04:05:16 +02:00
Fix for issue 1191 - Embedded Youtube video isn't playing when SSL is active
This commit is contained in:
parent
3d26e1d233
commit
bc5c470cac
2 changed files with 8 additions and 2 deletions
|
@ -78,6 +78,11 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
|
|||
if (!is_object($j))
|
||||
return false;
|
||||
|
||||
// Always embed the SSL version
|
||||
if (isset($j->html))
|
||||
$j->html = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"),
|
||||
array("https://www.youtube.com/", "https://player.vimeo.com/"), $j->html);
|
||||
|
||||
$j->embedurl = $embedurl;
|
||||
|
||||
// If fetching information doesn't work, then improve via internal functions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue