This commit is contained in:
Adisak 2025-10-31 18:41:01 +07:00
parent 4252efe8ad
commit 724ffd78f3
2 changed files with 3 additions and 3 deletions

View file

@ -211,6 +211,9 @@ export class FileController extends Controller {
let fileList = !body.replace
? await Promise.all(
body.fileList.map(async ({ fileName, ...props }) => {
if(fileName.length > 85){
throw new Error("ไม่สามารถอัปโหลดไฟล์ได้ เนื่องจากชื่อไฟล์มีความยาวเกินที่ระบบกำหนด กรุณาปรับชื่อไฟล์ให้สั้นลง");
}
const dotIndex = fileName.lastIndexOf(".");
const originalName =
dotIndex !== -1 && !fileName.startsWith(".") ? fileName.slice(0, dotIndex) : fileName;

View file

@ -180,9 +180,6 @@ export class DocumentController extends Controller {
let fileList = !body.replace
? body.fileList.map(({ fileName, ...props }) => {
if(fileName.length > 85){
throw new Error("ไม่สามารถอัปโหลดไฟล์ได้ เนื่องจากชื่อไฟล์มีความยาวเกินที่ระบบกำหนด กรุณาปรับชื่อไฟล์ให้สั้นลง");
}
const dotIndex = fileName.lastIndexOf(".");
let originalName =
dotIndex !== -1 && !fileName.startsWith(".") ? fileName.slice(0, dotIndex) : fileName;