From: Michael Tremer Date: Mon, 4 Mar 2024 13:17:05 +0000 (+0000) Subject: fireinfo: Fix profile send handler X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=694f5e0d5ba8f4d89965c55f32e1e6ea5e310ba7;p=ipfire.org.git fireinfo: Fix profile send handler Signed-off-by: Michael Tremer --- 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}" }),