Skip to content

Commit

Permalink
[TelegramBridge] Prevent double encoding entities (#1182)
Browse files Browse the repository at this point in the history
  • Loading branch information
triatic authored and logmanoriginal committed Jun 22, 2019
1 parent 372461b commit 5e2f0fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridges/TelegramBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ public function collectData() {
$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;

Expand Down

0 comments on commit 5e2f0fb

Please sign in to comment.