don't send full backlog of tweets on first sync

This commit is contained in:
Vincent Cloutier 2023-03-19 11:35:30 -04:00
parent 1daec5577d
commit 62caf7e956
1 changed files with 7 additions and 1 deletions

View File

@ -57,7 +57,13 @@ namespace BirdsiteLive.Pipeline.Processors.SubTasks
{
var tweets = await RetrieveNewTweets(user);
_logger.LogInformation(index + "/" + syncTwitterUsers.Count() + " Got " + tweets.Length + " tweets from user " + user.Acct + " " );
if (tweets.Length > 0 && user.LastTweetPostedId != -1)
if (tweets.Length > 0 && user.LastTweetPostedId == -1)
{
// skip the first time to avoid sending backlog of tweet
var tweetId = tweets.Last().Id;
await _twitterUserDal.UpdateTwitterUserAsync(user.Id, tweetId, tweetId, user.FetchingErrorCount, now);
}
else if (tweets.Length > 0 && user.LastTweetPostedId != -1)
{
userWtData.Tweets = tweets;
usersWtTweets.Add(userWtData);