mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-24 16:49:26 +01:00
remove any spaces from authenticator code input
This commit is contained in:
parent
9bf2c4f54c
commit
fc3a3fbbbb
@ -42,7 +42,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
_service.logInTwoFactor = function (code) {
|
_service.logInTwoFactor = function (code) {
|
||||||
var request = new TokenTwoFactorRequest(code);
|
var request = new TokenTwoFactorRequest(code.replace(' ', ''));
|
||||||
|
|
||||||
var deferred = $q.defer();
|
var deferred = $q.defer();
|
||||||
apiService.postTokenTwoFactor(request, function (response) {
|
apiService.postTokenTwoFactor(request, function (response) {
|
||||||
|
Loading…
Reference in New Issue
Block a user