complete condition

This commit is contained in:
Anker Jam 2020-10-19 00:22:55 +08:00
parent cbb3de741d
commit 3c48719999
1 changed files with 5 additions and 1 deletions

View File

@ -723,7 +723,11 @@ func (p *ControllerRegister) serveHttp(ctx *beecontext.Context) {
err = ctx.Input.ParseFormOrMultiForm(p.cfg.MaxMemory)
if err != nil {
logs.Error(err)
exception("413", ctx)
if strings.Contains(err.Error(), `http: request body too large`) {
exception("413", ctx)
} else {
exception("500", ctx)
}
goto Admin
}
}