]> git.mxchange.org Git - friendica.git/commitdiff
workaround for media.ccc.de oembed with size 0
authorfabrixxm <fabrix.xm@gmail.com>
Mon, 28 Dec 2015 17:28:02 +0000 (18:28 +0100)
committerfabrixxm <fabrix.xm@gmail.com>
Mon, 28 Dec 2015 17:28:02 +0000 (18:28 +0100)
mod/oembed.php

index f79f66a483863f0db1b5c7567c3ea54aed4b9bb5..cb478cb8605d7054133a6e9ab371e2dbb9187d9b 100644 (file)
@@ -21,6 +21,12 @@ function oembed_content(&$a){
                $url = base64url_decode($a->argv[1]);
                $j = oembed_fetch_url($url);
 
+               // workaround for media.ccc.de (and any other endpoint that return size 0)
+               if (substr($j->html, 0, 7) == "<iframe" && strstr($j->html, 'width="0"')) {
+                       $j->html = '<style>html,body{margin:0;padding:0;} iframe{width:100%;height:100%;}</style>'. $j->html;
+                       $j->html = str_replace('width="0"', '', $j->html);
+                       $j->html = str_replace('height="0"', '', $j->html);
+               }
                echo $j->html;
 //             logger('mod-oembed ' . $j->html, LOGGER_ALL);
                echo "</body></html>";