fix encoding issues
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
040f4da73d
commit
06f8b61f62
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ class YoutubeBridge extends BridgeAbstract {
|
|||
|
||||
private function ytBridgeFixTitle($title) {
|
||||
// convert both Ӓ and " to UTF-8
|
||||
return html_entity_decode(mb_convert_encoding(trim($title), 'UTF-8', 'HTML-ENTITIES'));
|
||||
return html_entity_decode($title,ENT_QUOTES,'UTF-8');
|
||||
}
|
||||
|
||||
public function collectData(array $param) {
|
||||
|
|
Loading…
Reference in a new issue