mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix error saving drive file caption > 512 chars
This commit is contained in:
parent
c1da33a658
commit
ebef0b14c6
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ export const paramDef = {
|
|||
folderId: { type: "string", format: "misskey:id", nullable: true },
|
||||
name: { type: "string" },
|
||||
isSensitive: { type: "boolean" },
|
||||
comment: { type: "string", nullable: true, maxLength: 512 },
|
||||
comment: { type: "string", nullable: true, maxLength: DB_MAX_IMAGE_COMMENT_LENGTH },
|
||||
},
|
||||
required: ["fileId"],
|
||||
} as const;
|
||||
|
|
Loading…
Add table
Reference in a new issue