Skip to content

Commit 5ea9824

Browse files
committed
bull code correction
1 parent 426bf3c commit 5ea9824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/FoxIDs.SeedTool/SeedLogic/UserSeedLogic.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public async Task SeedAsync()
8181
stop = true;
8282
break;
8383
}
84-
if ((!calculatePasswordHash && users.Where(u => !u.Password.IsNullOrWhiteSpace()).Count() >= uploadUsersWithPassowrdBlockSize) || users.Count() >= uploadUsersBlockSize)
84+
if ((!calculatePasswordHash && users.Where(u => !u.Password.IsNullOrWhiteSpace()).Count() >= uploadUsersWithPasswordBlockSize) || users.Count() >= uploadUsersBlockSize)
8585
{
8686
await UploadAsync(users, addCount);
8787
users = new List<CreateUserApiModel>();

0 commit comments

Comments
 (0)