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

This commit is contained in:
SagePtr 2019-05-02 22:06:01 +02:00 коммит произвёл Lauris BH
Родитель ade88a877d
Коммит 59f879bfec
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

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