validate blank messages on backend

This commit is contained in:
ThatOneCalculator 2023-03-19 20:03:49 -07:00
parent 82c9428b45
commit 7420f6ce56

View file

@ -151,7 +151,7 @@ export default define(meta, paramDef, async (ps, user) => {
}
// テキストが無いかつ添付ファイルも無かったらエラー
if (ps.text == null && file == null) {
if ((ps.text == null || ps.text.trim() === '') && file == null) {
throw new ApiError(meta.errors.contentRequired);
}