[TelegramBridge] Prevent double encoding entities (#1182)

This commit is contained in:
triatic 2019-06-22 17:44:25 +01:00 committed by LogMANOriginal
parent 372461b1a3
commit 5e2f0fb626
1 changed files with 2 additions and 2 deletions

View File

@ -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;