Add delay period to passwordless login

This commit is contained in:
Bernd Schoolmann 2023-08-21 21:43:57 +02:00
parent 6d0424eb82
commit 1eb6a6fea5
No known key found for this signature in database

View File

@ -179,6 +179,7 @@ func LoginWithDevice(ctx context.Context, email string, cfg *config.Config, vaul
}
return loginResponseToken, crypto.MasterKeyFromBytes(masterKey), string(masterPasswordHash), nil
}
time.Sleep(1 * time.Second)
}
}
}