When quoting a retweet, quote will be in original tweet

This commit is contained in:
Manuel Cortez 2018-09-22 10:18:25 -05:00
parent 9fd9d2a120
commit c716f4aa96

View File

@ -633,6 +633,9 @@ class baseBufferController(bufferController):
self._retweet_with_comment(tweet, id) self._retweet_with_comment(tweet, id)
def _retweet_with_comment(self, tweet, id, comment=''): def _retweet_with_comment(self, tweet, id, comment=''):
# If quoting a retweet, let's quote the original tweet instead the retweet.
if tweet.has_key("retweeted_status"):
tweet = tweet["retweeted_status"]
if tweet.has_key("full_text"): if tweet.has_key("full_text"):
comments = tweet["full_text"] comments = tweet["full_text"]
else: else: