diff options
Diffstat (limited to 'twitter.py')
-rwxr-xr-x | twitter.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -106,9 +106,9 @@ def parse_tweet(user, tweet, included_tweets, included_media): title, description, ref_tweet.get("entities", {}).get("urls", []) ) elif rt["type"] == "replied_to": - description += "<br/>This was a reply to:<br/>" + rt["id"] + description += "<br/>This was a reply to: " + rt["id"] elif rt["type"] == "quoted": - description += "<br/>Quoted tweet:<br/>" + rt["text"] + description += "<br/>Quoted tweet: " + rt["id"] else: description += f"<br/><br/>Unknown reference type: {rt['type']}" |