Fix double-generation of scratch token (backport #6833) (#6835)

pull/6839/head^2
SagePtr 6 years ago committed by Lauris BH
parent d21dabab4e
commit 74eee64b57

@ -129,11 +129,7 @@ func aesDecrypt(key, text []byte) ([]byte, error) {
// NewTwoFactor creates a new two-factor authentication token. // NewTwoFactor creates a new two-factor authentication token.
func NewTwoFactor(t *TwoFactor) error { func NewTwoFactor(t *TwoFactor) error {
_, err := t.GenerateScratchToken() _, err := x.Insert(t)
if err != nil {
return err
}
_, err = x.Insert(t)
return err return err
} }

Loading…
Cancel
Save