mirror of
https://github.com/bitwarden/android.git
synced 2024-12-20 08:12:26 +03:00
remove any spaces from authenticator code
This commit is contained in:
parent
2c05b3b89f
commit
8f99d80ac1
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
var request = new TokenTwoFactorRequest
|
var request = new TokenTwoFactorRequest
|
||||||
{
|
{
|
||||||
Code = CodeCell.Entry.Text,
|
Code = CodeCell.Entry.Text.Replace(" ", ""),
|
||||||
Provider = "Authenticator",
|
Provider = "Authenticator",
|
||||||
Device = new DeviceRequest(_appIdService, _deviceInfoService)
|
Device = new DeviceRequest(_appIdService, _deviceInfoService)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue