mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-16 23:29:56 +03:00
[XPathAbstract] Fix encoding of feed output (#2297)
This commit is contained in:
parent
c445ba6ebb
commit
87b3aaa550
1 changed files with 2 additions and 2 deletions
|
@ -428,9 +428,9 @@ abstract class XPathAbstract extends BridgeAbstract {
|
|||
case 'timestamp':
|
||||
return $this->formatItemTimestamp($value);
|
||||
case 'enclosures':
|
||||
return array($this->cleanImageUrl($value));
|
||||
return $this->formatItemEnclosures($value);
|
||||
case 'categories':
|
||||
return array($this->fixEncoding($value));
|
||||
return $this->formatItemCategories($value);
|
||||
}
|
||||
return $value;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue