1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-05 18:13:36 +00:00

make kdfIterations nullable (#1169)

This commit is contained in:
Matt Portune
2020-12-08 10:54:58 -05:00
committed by GitHub
parent e79097603f
commit dcfdc7d0ea
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ namespace Bit.Core.Services
_tokenService = tokenService;
}
public async Task SetInformationAsync(string userId, string email, KdfType kdf, int kdfIterations)
public async Task SetInformationAsync(string userId, string email, KdfType kdf, int? kdfIterations)
{
_email = email;
_userId = userId;