diff --git a/include/oembed.php b/include/oembed.php
index 4a95bd8a4..2ecb11e1f 100755
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -175,13 +175,16 @@ function oembed_format_object($j){
$embedlink .= $j->author_name;
}
+ if (trim($embedlink) == "")
+ $embedlink = $embedurl;
+
$ret .= "$embedlink";
}
//if (isset($j->author_name)) $ret.=" by ".$j->author_name;
//if (isset($j->provider_name)) $ret.=" on ".$j->provider_name;
} else {
// add for html2bbcode conversion
- $ret .= "";
+ $ret .= "$embedurl";
}
$ret.="
";
return mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));