From 6486aebff99d53d197c0e5b6e399cef6b6d5be1b Mon Sep 17 00:00:00 2001 From: Quinten Stokkink Date: Fri, 6 Dec 2024 10:54:06 +0100 Subject: [PATCH] Fixed mimetype being wrong in winreg --- src/tribler/core/restapi/webui_endpoint.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tribler/core/restapi/webui_endpoint.py b/src/tribler/core/restapi/webui_endpoint.py index 3cb548ec3d..380d263f59 100644 --- a/src/tribler/core/restapi/webui_endpoint.py +++ b/src/tribler/core/restapi/webui_endpoint.py @@ -42,6 +42,11 @@ async def return_files(self, request: web.Request) -> RESTResponse | web.FileRes response = web.FileResponse(resource) if path.endswith(".tsx"): response.content_type = "application/javascript" + elif path.endswith(".js"): + # https://github.com/Tribler/tribler/issues/8279 + response.content_type = "application/javascript" + elif path.endswith(".html"): + response.content_type = "text/html" elif (guessed_type := mimetypes.guess_type(path)[0]) is not None: response.content_type = guessed_type else: