mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-30 21:30:14 +02:00
[XPathAbstract] Fix encoding on feed title (#3365)
This commit is contained in:
@@ -348,7 +348,7 @@ abstract class XPathAbstract extends BridgeAbstract
|
||||
{
|
||||
$title = $xpath->query($this->getParam('feed_title'));
|
||||
if (count($title) === 1) {
|
||||
return $this->getItemValueOrNodeValue($title);
|
||||
return $this->fixEncoding($this->getItemValueOrNodeValue($title));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user