From 6f71c5ceda7a5f4ebcaa2dfe023df8e6f95b0cfb Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Mon, 17 Mar 2025 00:37:09 +0300 Subject: [PATCH] added /changelogs to static path --- app/library/HttpAPI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/library/HttpAPI.py b/app/library/HttpAPI.py index 8d4e6521..d8454a85 100644 --- a/app/library/HttpAPI.py +++ b/app/library/HttpAPI.py @@ -213,7 +213,7 @@ class HttpAPI(Common): preloaded += 1 if urlPath.endswith("/index.html"): - paths_list = ["/console", "/presets", "/tasks", "/notifications"] + paths_list = ["/console", "/presets", "/tasks", "/notifications", "/changeslog"] for path in paths_list: self._static_holder[path] = {"content": content, "content_type": contentType} app.router.add_get(path, self._static_file)