From c5b9860960020ef57b43b40ebfbc3b2fa8ab322a Mon Sep 17 00:00:00 2001 From: Chris Clark Date: Wed, 24 Jul 2024 12:18:03 -0400 Subject: [PATCH] mime --- explorer/ee/db_connections/mime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/ee/db_connections/mime.py b/explorer/ee/db_connections/mime.py index 148d3e67..dff29939 100644 --- a/explorer/ee/db_connections/mime.py +++ b/explorer/ee/db_connections/mime.py @@ -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