mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
[bugfix] Increase field size limits when registering apps (#958)
This commit is contained in:
parent
ee6a0a1e15
commit
a9addb59b6
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@
|
|||
|
||||
// these consts are used to ensure users can't spam huge entries into our database
|
||||
const (
|
||||
formFieldLen = 64
|
||||
formRedirectLen = 512
|
||||
formFieldLen = 1024
|
||||
formRedirectLen = 2056
|
||||
)
|
||||
|
||||
// AppsPOSTHandler swagger:operation POST /api/v1/apps appCreate
|
||||
|
|
Loading…
Reference in a new issue