From 317e0d7108cef833be265073a4e74e4f11aee67f Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 18 Mar 2026 23:32:38 +0000 Subject: [PATCH] Fix satellite mode redirect endpoint --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1628e8a..8e06966 100644 --- a/app.py +++ b/app.py @@ -481,7 +481,7 @@ def login(): @app.route('/') def index() -> str: if request.args.get('mode') == 'satellite': - return redirect(url_for('satellite.dashboard')) + return redirect(url_for('satellite.satellite_dashboard')) tools = { 'rtl_fm': check_tool('rtl_fm'),