mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-23 12:15:23 +02:00
[XPathAbstract] Fix encoding on feed title (#3365)
This commit is contained in:
parent
63dc500ae0
commit
c6c4b3a24f
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ abstract class XPathAbstract extends BridgeAbstract
|
||||||
{
|
{
|
||||||
$title = $xpath->query($this->getParam('feed_title'));
|
$title = $xpath->query($this->getParam('feed_title'));
|
||||||
if (count($title) === 1) {
|
if (count($title) === 1) {
|
||||||
return $this->getItemValueOrNodeValue($title);
|
return $this->fixEncoding($this->getItemValueOrNodeValue($title));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue