mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-26 16:57:59 +01:00
check yubico token length == 44
This commit is contained in:
parent
a2bac9d368
commit
0b249d4dd4
@ -57,7 +57,7 @@ namespace Bit.App.Pages
|
||||
{
|
||||
var token = (string)message.Data;
|
||||
if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) &&
|
||||
token.Length > 40 && !token.Contains(" "))
|
||||
token.Length == 44 && !token.Contains(" "))
|
||||
{
|
||||
Device.BeginInvokeOnMainThread(async () =>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user