Merge branch 'develop' into feature/vue3

This commit is contained in:
vabene1111
2025-01-29 20:22:04 +01:00
10 changed files with 331 additions and 236 deletions

View File

@@ -44,7 +44,7 @@ def is_file_type_allowed(filename, image_only=False):
check_list += allowed_file_types
for file_type in check_list:
if filename.endswith(file_type):
if filename.lower().endswith(file_type):
is_file_allowed = True
return is_file_allowed