From 694f5e0d5ba8f4d89965c55f32e1e6ea5e310ba7 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 4 Mar 2024 13:17:05 +0000 Subject: [PATCH] fireinfo: Fix profile send handler Signed-off-by: Michael Tremer --- src/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/__init__.py b/src/web/__init__.py index a12ba70a..59208809 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -291,7 +291,7 @@ class Application(tornado.web.Application): # fireinfo.ipfire.org self.add_handlers(r"fireinfo\.([a-z]+\.dev\.)?ipfire\.org", [ # Handle profiles - (r"/fireinfo/send/([a-z0-9]+)", fireinfo.ProfileSendHandler), + (r"/send/([a-z0-9]+)", fireinfo.ProfileSendHandler), # Redirect anything else (r"(.*)", tornado.web.RedirectHandler, { "url" : "https://www.ipfire.org/fireinfo{0}" }), -- 2.47.3