diff --git a/src/inc/routes/apiv2/tags.mjs b/src/inc/routes/apiv2/tags.mjs index 41f6311..b551576 100644 --- a/src/inc/routes/apiv2/tags.mjs +++ b/src/inc/routes/apiv2/tags.mjs @@ -30,7 +30,7 @@ export default router => { const postid = +req.params.postid; const tagname = req.post.tagname?.trim(); - if(tagname.length >= 45) { + if(tagname.length > 70) { return res.json({ success: false, msg: 'tag is too long!'