Fix lint error

This commit is contained in:
Alessio 2022-01-07 13:52:33 -05:00
parent d95f183e45
commit c253486580

View File

@ -238,7 +238,7 @@ func GetTweetFull(id TweetID) (tweets []Tweet, retweets []Retweet, users []User,
tweets, retweets, _users, err := ParseTweetResponse(tweet_response) tweets, retweets, _users, err := ParseTweetResponse(tweet_response)
// Quoted tombstones need their user_id filled out from the tombstoned_users list // Quoted tombstones need their user_id filled out from the tombstoned_users list
for i, _ := range tweets { for i := range tweets {
if tweets[i].UserID != 0 { if tweets[i].UserID != 0 {
continue continue
} }