1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-06 00:28:07 +02:00

remove any spaces from authenticator code

This commit is contained in:
Kyle Spearrin 2016-11-26 18:48:35 -05:00
parent 2c05b3b89f
commit 8f99d80ac1

View File

@ -136,7 +136,7 @@ namespace Bit.App.Pages
var request = new TokenTwoFactorRequest
{
Code = CodeCell.Entry.Text,
Code = CodeCell.Entry.Text.Replace(" ", ""),
Provider = "Authenticator",
Device = new DeviceRequest(_appIdService, _deviceInfoService)
};