From dd22b25831d8dc822f033549fb9ed4ebf3ff2f06 Mon Sep 17 00:00:00 2001 From: Alessio Date: Sun, 10 Oct 2021 15:28:49 -0700 Subject: [PATCH] Fix lint error --- scraper/api_types.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scraper/api_types.go b/scraper/api_types.go index c31ba5d..57cb80b 100644 --- a/scraper/api_types.go +++ b/scraper/api_types.go @@ -126,11 +126,6 @@ func (t *APITweet) NormalizeContent() { t.FullText = string([]rune(t.FullText)[t.DisplayTextRange[0]:t.DisplayTextRange[1]]) } - // Handle threads - if (t.InReplyToScreenName != "" && t.Entities.ReplyMentions == "") { - // Identify a "thread" as a tweet that replies to something but there's no leading `@reply` text - } - // Handle pasted tweet links that turn into quote tweets but still have a link in them if t.QuotedStatusID != 0 { for _, url := range t.Entities.URLs {