Minor Improvements for File Validation and Configuration Handling #21179 (#21171)

Co-authored-by: tech <cto@sb>
This commit is contained in:
NeatGuyCoding
2025-06-18 18:33:28 +08:00
committed by GitHub
parent dbae5b0564
commit 2eae7503e1
4 changed files with 4 additions and 4 deletions

View File

@@ -208,7 +208,7 @@ class AnnotationBatchImportApi(Resource):
if len(request.files) > 1:
raise TooManyFilesError()
# check file type
if not file.filename or not file.filename.endswith(".csv"):
if not file.filename or not file.filename.lower().endswith(".csv"):
raise ValueError("Invalid file type. Only CSV files are allowed")
return AppAnnotationService.batch_import_app_annotations(app_id, file)