Skip to content

Commit

Permalink
make extension check case insensitive again
Browse files Browse the repository at this point in the history
  • Loading branch information
contrick64 committed Dec 17, 2024
1 parent 1e2ad9c commit c8f9843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def ingest_files(

with open(file, "rb") as file_obj:
content_streams.append({
"dsID": allowed_streams[file.suffix],
"dsID": allowed_streams[file.suffix.lower()],
"file_name": file.name
})
params['content_streams'] = json.dumps(content_streams)
Expand Down

0 comments on commit c8f9843

Please sign in to comment.