From 0f96589c7416307730eadac647faa6aa4d800fb8 Mon Sep 17 00:00:00 2001 From: Alexander Sheiko Date: Sun, 4 Jun 2023 13:12:21 +0300 Subject: [PATCH] Remove skip pinned tweet Close #103 --- util.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/util.go b/util.go index 89ef9f6..42d0987 100644 --- a/util.go +++ b/util.go @@ -138,9 +138,6 @@ func getTweetTimeline(ctx context.Context, query string, maxTweetsNbr int, fetch } if tweetsNbr < maxTweetsNbr { - if tweet.IsPin && nextCursor != "" { - continue - } nextCursor = next channel <- &TweetResult{Tweet: *tweet} } else {