Increase limit

This commit is contained in:
rxdn 2023-09-13 01:39:16 +01:00
parent 2749817a6f
commit d873a4c221

View File

@ -19,7 +19,8 @@ func DeleteTag(ctx *gin.Context) {
return
}
if body.TagId == "" || len(body.TagId) > 16 {
// Increase max length for characters from other alphabets
if body.TagId == "" || len(body.TagId) > 100 {
ctx.JSON(400, utils.ErrorStr("Invalid tag"))
return
}