1
0
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:
mrnoname1000
2023-05-10 18:32:01 -05:00
committed by GitHub
parent 63dc500ae0
commit c6c4b3a24f

View File

@@ -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));
}
}