Skip to content

Commit

Permalink
[MozillaBugTrackerBridge] Fix incorrect newlines in feed title (#2298)
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanq authored Oct 14, 2021
1 parent 793c55f commit c445ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/MozillaBugTrackerBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function collectData(){
defaultLinkTo($html, self::URI);

// Store header information into private members
$this->bugid = $html->find('#field-value-bug_id', 0)->plaintext;
$this->bugid = trim($html->find('#field-value-bug_id', 0)->plaintext);
$this->bugdesc = $html->find('h1#field-value-short_desc', 0)->plaintext;

// Get and limit comments
Expand Down

0 comments on commit c445ba6

Please sign in to comment.