master #50

Merged
schrumpel merged 101 commits from master into dev 2022-10-22 23:40:03 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit dc14d2f78f - Show all commits

View File

@ -1,6 +1,6 @@
{ {
"name": "f0ckv2", "name": "f0ckv2",
"version": "2.2.0", "version": "2.2.1",
"description": "f0ck, kennste?", "description": "f0ck, kennste?",
"main": "index.mjs", "main": "index.mjs",
"scripts": { "scripts": {

View File

@ -30,7 +30,7 @@ export default router => {
const postid = +req.params.postid; const postid = +req.params.postid;
const tagname = req.post.tagname?.trim(); const tagname = req.post.tagname?.trim();
if(tagname.length >= 45) { if(tagname.length > 70) {
return res.json({ return res.json({
success: false, success: false,
msg: 'tag is too long!' msg: 'tag is too long!'