1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

PM-6706 Fixed UV attempts to be maximum 5 attempts and not 6 (#3103)

This commit is contained in:
Federico Maccaroni
2024-03-21 13:28:38 -03:00
committed by GitHub
parent ebc068d820
commit 3a10e09469

View File

@@ -195,7 +195,7 @@ namespace Bit.Core.Services.UserVerification
{
return new UVResult(true, true).AsCancellable();
}
} while (attempts++ < MAX_ATTEMPTS);
} while (++attempts < MAX_ATTEMPTS);
return new UVResult(true, false).AsCancellable();
}