[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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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