1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-28 20:30:25 +02:00

[FacebookBridge] Fix decoding of cyrillic letters in group names (#842)

This commit is contained in:
Aleś Bułojčyk
2019-03-23 18:39:09 +03:00
committed by LogMANOriginal
parent 835e3b1163
commit b9bbc9bdda

View File

@@ -219,8 +219,7 @@ class FacebookBridge extends BridgeAbstract {
$ogtitle = $html->find('meta[property="og:title"]', 0)
or returnServerError('Unable to find group title!');
return htmlspecialchars_decode($ogtitle->content, ENT_QUOTES);
return html_entity_decode($ogtitle->content, ENT_QUOTES);
}
private function extractGroupURI($post) {