mirror of
https://github.com/bitwarden/mobile.git
synced 2025-01-13 19:41:31 +01:00
yubikey token must be > 40 in length too
This commit is contained in:
parent
eca4777b99
commit
65725b5a38
@ -56,7 +56,8 @@ namespace Bit.App.Pages
|
||||
if(message.Command == "gotYubiKeyOTP")
|
||||
{
|
||||
var token = (string)message.Data;
|
||||
if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) && !token.Contains(" "))
|
||||
if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) &&
|
||||
token.Length > 40 && !token.Contains(" "))
|
||||
{
|
||||
Device.BeginInvokeOnMainThread(async () =>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user