mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 21:33:36 +00:00
PM-6706 Fixed UV attempts to be maximum 5 attempts and not 6 (#3103)
This commit is contained in:
committed by
GitHub
parent
ebc068d820
commit
3a10e09469
@@ -195,7 +195,7 @@ namespace Bit.Core.Services.UserVerification
|
|||||||
{
|
{
|
||||||
return new UVResult(true, true).AsCancellable();
|
return new UVResult(true, true).AsCancellable();
|
||||||
}
|
}
|
||||||
} while (attempts++ < MAX_ATTEMPTS);
|
} while (++attempts < MAX_ATTEMPTS);
|
||||||
|
|
||||||
return new UVResult(true, false).AsCancellable();
|
return new UVResult(true, false).AsCancellable();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user