1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 02:08:36 +00:00

Sign: Handle ErrTwoFactorNotEnrolled correctly (#10008)

This commit is contained in:
zeripath
2020-01-26 23:44:12 +00:00
committed by GitHub
parent 20d637a0f8
commit d087f4fb73
2 changed files with 4 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ func (pr *PullRequest) SignMerge(u *User, tmpBasePath, baseCommit, headCommit st
}
case twofa:
twofaModel, err := GetTwoFactorByUID(u.ID)
if err != nil {
if err != nil && !IsErrTwoFactorNotEnrolled(err) {
return false, "", err
}
if twofaModel == nil {