Skip to content

Commit

Permalink
mime
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisclark committed Jul 24, 2024
1 parent 5b63d68 commit c5b9860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explorer/ee/db_connections/mime.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def is_json_list(file):


def is_sqlite(file):
if file.content_type != "application/x-sqlite3":
if file.content_type not in ["application/x-sqlite3", "application/octet-stream"]:
return False
try:
# Check if the file starts with the SQLite file header
Expand Down

0 comments on commit c5b9860

Please sign in to comment.