Update MIME type for .blend to application/x-blender

This commit is contained in:
2016-05-13 11:52:06 +02:00
parent 7eb72c87f5
commit c44a1d870b
2 changed files with 4 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ file_storage = Blueprint('file_storage', __name__,
static_folder='../../static/storage', )
# Add our own extensions to the mimetypes package
mimetypes.add_type('application/x-blend', '.blend')
mimetypes.add_type('application/x-blender', '.blend')
@file_storage.route('/gcs/<bucket_name>/<subdir>/')