mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03: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'));
|
||||
if (count($title) === 1) {
|
||||
return $this->getItemValueOrNodeValue($title);
|
||||
return $this->fixEncoding($this->getItemValueOrNodeValue($title));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue