use http package status for when password is too long
This commit is contained in:
parent
0381cb13ba
commit
9f1c4dd9e6
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ func CreatePassword(store storage.Store, maxLength int, encoding *base64.Encodin
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(reqBody.Password) > maxLength {
|
if len(reqBody.Password) > maxLength {
|
||||||
http.Error(res, "Password too long", 413) // Payload Too Large
|
http.Error(res, "Password too long", http.StatusRequestEntityTooLarge)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue