From 6b7719b11f4a97dd8a7a34f5166dd410f8fa52cb Mon Sep 17 00:00:00 2001 From: cbdev Date: Wed, 3 Nov 2021 21:30:43 +0100 Subject: Fix default mimetype, change license date --- backend/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backend') diff --git a/backend/main.py b/backend/main.py index bbb853d..085599c 100644 --- a/backend/main.py +++ b/backend/main.py @@ -5,8 +5,8 @@ import os import sqlite3 import mimetypes -def playout(filename, content = "text/html"): - return ["", [('Content-Type', content if content else "application/binary"), ("X-Accel-Redirect", filename)], None] +def playout(filename, content = "application/octet-stream"): + return ["", [('Content-Type', content), ("X-Accel-Redirect", filename)], None] def home(): return ["", [('Content-Type','text/html'), ("Location", config.homepage)], "302 Home"] @@ -92,7 +92,7 @@ def route(path, env, session, post): if len(path) > 1 and path[1] == "preview" and session["display"] == "gallery": return playout("/data/" + target_filename_internal(session, "preview/" + path[2]), mimetypes.guess_type(path[2])[0]) - return playout("/interface/listing.htm") + return playout("/interface/listing.htm", "text/html") def handle_request(env, response): path = env.get('PATH_INFO', '').lstrip('/').split('/') -- cgit v1.2.3