Skip to content

Commit

Permalink
[TelegramBridge] Populate author (RSS-Bridge#1183)
Browse files Browse the repository at this point in the history
  • Loading branch information
triatic authored and logmanoriginal committed Jun 22, 2019
1 parent 2880112 commit 031c595
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bridges/TelegramBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ public function collectData() {
$item['title'] = html_entity_decode($this->itemTitle, ENT_QUOTES);
$item['timestamp'] = $this->processDate($messageDiv);
$item['enclosures'] = $this->enclosures;
$author = trim($messageDiv->find('a.tgme_widget_message_owner_name', 0)->plaintext);
$item['author'] = html_entity_decode($author, ENT_QUOTES);

$this->items[] = $item;
}
Expand Down

0 comments on commit 031c595

Please sign in to comment.