We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 36a5c99 + 164e8c8 commit f603bc2Copy full SHA for f603bc2
Embed/Url.php
@@ -69,7 +69,7 @@ private function resolve () {
69
$charset = substr(strtoupper(strstr($charset, '=')), 1);
70
71
if (!empty($charset) && ($charset !== 'UTF-8')) {
72
- @mb_convert_encoding($content, 'UTF-8', $charset);
+ $content = @mb_convert_encoding($content, 'UTF-8', $charset);
73
}
74
} else if (strpos($this->getResult('content_type'), '/') !== false) {
75
$this->result['mime_type'] = $this->getResult('content_type');
0 commit comments