From c702fffce2ed3abec4da0baa54c82e9b37912b6b Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 11 Dec 2025 17:13:20 +0100 Subject: [PATCH] UI - 'Recheck all' should return back to the correct group/tag --- changedetectionio/blueprint/ui/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/blueprint/ui/__init__.py b/changedetectionio/blueprint/ui/__init__.py index 7755d2ca8..b0a0a40e2 100644 --- a/changedetectionio/blueprint/ui/__init__.py +++ b/changedetectionio/blueprint/ui/__init__.py @@ -249,7 +249,7 @@ def construct_blueprint(datastore: ChangeDetectionStore, update_q, worker_handle if i == 0: flash("No watches available to recheck.") - return redirect(url_for('watchlist.index')) + return redirect(url_for('watchlist.index', **({'tag': tag} if tag else {}))) @ui_blueprint.route("/form/checkbox-operations", methods=['POST']) @login_optionally_required