remove reinitialization in case of refollowing

This commit is contained in:
Nicolas Constant 2020-07-08 19:50:31 -04:00
parent a23271613d
commit 60eb472752
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 3 deletions

View File

@ -45,9 +45,7 @@ namespace BirdsiteLive.Domain.BusinessUseCases
if(!follower.FollowingsSyncStatus.ContainsKey(twitterUserId))
follower.FollowingsSyncStatus.Add(twitterUserId, -1);
follower.FollowingsSyncStatus[twitterUserId] = -1;
// Save Follower
await _followerDal.UpdateFollowerAsync(follower);
}