mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-29 14:48:52 +03:00
[FacebookBridge] Fix decoding of cyrillic letters in group names (#842)
This commit is contained in:
parent
835e3b1163
commit
b9bbc9bdda
1 changed files with 1 additions and 2 deletions
|
@ -219,8 +219,7 @@ class FacebookBridge extends BridgeAbstract {
|
||||||
$ogtitle = $html->find('meta[property="og:title"]', 0)
|
$ogtitle = $html->find('meta[property="og:title"]', 0)
|
||||||
or returnServerError('Unable to find group title!');
|
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) {
|
private function extractGroupURI($post) {
|
||||||
|
|
Loading…
Reference in a new issue