Skip to content

Commit 44f943e

Browse files
author
AJ ONeal
committed
remove dangling assignment
1 parent a93b4ef commit 44f943e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routers/user/auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ func commonResetPassword(ctx *context.Context) *models.User {
12151215
func ResetPasswd(ctx *context.Context) {
12161216
ctx.Data["IsResetForm"] = true
12171217

1218-
_ = commonResetPassword(ctx)
1218+
commonResetPassword(ctx)
12191219

12201220
ctx.HTML(200, tplResetPassword)
12211221
}

0 commit comments

Comments
 (0)