Этот коммит содержится в:
Vlad Pronsky 2023-07-07 00:08:30 +03:00
родитель 3b116155aa
Коммит 99286a11cc

Просмотреть файл

@ -188,7 +188,7 @@ class Tweet(JSONTrait):
date=email.utils.parsedate_to_datetime(obj["created_at"]), date=email.utils.parsedate_to_datetime(obj["created_at"]),
user=tw_usr, user=tw_usr,
lang=obj["lang"], lang=obj["lang"],
rawContent=obj["full_text"], rawContent=get_or(obj, "note_tweet.note_tweet_results.result.text", obj["full_text"]),
replyCount=obj["reply_count"], replyCount=obj["reply_count"],
retweetCount=obj["retweet_count"], retweetCount=obj["retweet_count"],
likeCount=obj["favorite_count"], likeCount=obj["favorite_count"],