1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

remove any spaces from authenticator code input

This commit is contained in:
Kyle Spearrin 2016-11-26 18:52:46 -05:00
parent a52d2f4b7a
commit 3114e20aef

View File

@ -34,7 +34,7 @@ angular
_service.logInTwoFactor = function (code, provider) {
var request = {
code: code,
code: code.replace(' ', ''),
provider: provider
};