Fix double-generation of scratch token (#6832) (#6833)

release/v1.9
SagePtr 5 years ago committed by Lauris BH
parent ade88a877d
commit 59f879bfec

@ -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