mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
fixed file type check case sensitivity
This commit is contained in:
@@ -44,7 +44,7 @@ def is_file_type_allowed(filename, image_only=False):
|
|||||||
check_list += allowed_file_types
|
check_list += allowed_file_types
|
||||||
|
|
||||||
for file_type in check_list:
|
for file_type in check_list:
|
||||||
if filename.endswith(file_type):
|
if filename.lower().endswith(file_type):
|
||||||
is_file_allowed = True
|
is_file_allowed = True
|
||||||
|
|
||||||
return is_file_allowed
|
return is_file_allowed
|
||||||
|
|||||||
Reference in New Issue
Block a user