Skip to content

Commit 5acf2ce

Browse files
author
AJ ONeal
committed
remove dangling assignment
1 parent f8cf890 commit 5acf2ce

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
@@ -1176,7 +1176,7 @@ func commonResetPassword(ctx *context.Context) *models.User {
11761176
func ResetPasswd(ctx *context.Context) {
11771177
ctx.Data["IsResetForm"] = true
11781178

1179-
_ = commonResetPassword(ctx)
1179+
commonResetPassword(ctx)
11801180

11811181
ctx.HTML(200, tplResetPassword)
11821182
}

0 commit comments

Comments
 (0)