1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 01:05:50 +02:00

Change minimum allowed maxNoteTextLength to 0 (#4256)

This commit is contained in:
MeiMei
2019-02-14 16:30:20 +09:00
committed by syuilo
parent 25a8b26977
commit caea0f0376

View File

@@ -82,7 +82,7 @@ export const meta = {
},
maxNoteTextLength: {
validator: $.optional.num.min(1),
validator: $.optional.num.min(0),
desc: {
'ja-JP': '投稿の最大文字数'
}