mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 11:26:31 +03:00
[TelegramBridge] Prevent double encoding entities (#1182)
This commit is contained in:
parent
372461b1a3
commit
5e2f0fb626
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ class TelegramBridge extends BridgeAbstract {
|
|||
$item = array();
|
||||
|
||||
$item['uri'] = $this->processUri($messageDiv);
|
||||
$item['content'] = $this->processContent($messageDiv);
|
||||
$item['title'] = $this->itemTitle;
|
||||
$item['content'] = html_entity_decode($this->processContent($messageDiv), ENT_QUOTES);
|
||||
$item['title'] = html_entity_decode($this->itemTitle, ENT_QUOTES);
|
||||
$item['timestamp'] = $this->processDate($messageDiv);
|
||||
$item['enclosures'] = $this->enclosures;
|
||||
|
||||
|
|
Loading…
Reference in a new issue