Skip to content

Commit

Permalink
[TwitterBridge] Reorder quoted tweets (RSS-Bridge#921)
Browse files Browse the repository at this point in the history
Put content before quoted tweet to match the display order on Twitter
  • Loading branch information
triatic authored and logmanoriginal committed Nov 12, 2018
1 parent 9336bcc commit 5d51733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridges/TwitterBridge.php
Expand Up @@ -258,14 +258,14 @@ public function collectData(){
}

$item['content'] = <<<EOD
{$item['content']}
<hr>
<div style="display: inline-block; vertical-align: top;">
<blockquote>{$cleanedQuotedTweet}</blockquote>
</div>
<div style="display: block; vertical-align: top;">
<blockquote>{$quotedImage_html}</blockquote>
</div>
<hr>
{$item['content']}
EOD;
}

Expand Down

0 comments on commit 5d51733

Please sign in to comment.