Skip to content

Commit

Permalink
fix #656
Browse files Browse the repository at this point in the history
  • Loading branch information
dimdenGD committed Jan 24, 2024
1 parent 5ae7971 commit 078c72d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/apis.js
Original file line number Diff line number Diff line change
Expand Up @@ -4444,6 +4444,7 @@ const API = {
let res = e.content.itemContent.tweet_results.result;
let tweet = parseTweet(res);
if(tweet) {
if(tweet.user.blocking || tweet.user.muting) continue;
tweet.hasModeratedReplies = e.content.itemContent.hasModeratedReplies;
tweets.push(tweet);
}
Expand All @@ -4461,6 +4462,7 @@ const API = {
if(i !== 0) {
tweet.noTop = true;
}
if(tweet.user.blocking || tweet.user.muting) continue;
tweet.hasModeratedReplies = t.item.itemContent.hasModeratedReplies;
tweets.push(tweet);
}
Expand Down

0 comments on commit 078c72d

Please sign in to comment.