Merge pull request #6109 from JoeyShapiro/dev

fix: disallow empty files
This commit is contained in:
Timothy Jaeryang Baek
2024-10-20 20:41:56 -07:00
committed by GitHub
2 changed files with 11 additions and 0 deletions

View File

@@ -124,6 +124,11 @@
itemId: tempItemId
};
if (fileItem.size == 0) {
toast.error($i18n.t('File must have content to be uploaded'));
return null;
}
knowledge.files = [...(knowledge.files ?? []), fileItem];
// Check if the file is an audio file and transcribe/convert it to text file