Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 59s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 59s
This commit is contained in:
commit
3d0f228b8e
1 changed files with 3 additions and 0 deletions
|
|
@ -564,6 +564,9 @@ export class SubFileController extends Controller {
|
||||||
let fileList = !body.replace
|
let fileList = !body.replace
|
||||||
? await Promise.all(
|
? await Promise.all(
|
||||||
body.fileList.map(async ({ fileName, ...props }) => {
|
body.fileList.map(async ({ fileName, ...props }) => {
|
||||||
|
if(fileName.length > 85){
|
||||||
|
throw new Error("ไม่สามารถอัปโหลดไฟล์ได้ เนื่องจากชื่อไฟล์มีความยาวเกินที่ระบบกำหนด กรุณาปรับชื่อไฟล์ให้สั้นลง");
|
||||||
|
}
|
||||||
const dotIndex = fileName.lastIndexOf(".");
|
const dotIndex = fileName.lastIndexOf(".");
|
||||||
const originalName =
|
const originalName =
|
||||||
dotIndex !== -1 && !fileName.startsWith(".") ? fileName.slice(0, dotIndex) : fileName;
|
dotIndex !== -1 && !fileName.startsWith(".") ? fileName.slice(0, dotIndex) : fileName;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue