From a315693b44540990f4706a2fbba3991fa810e95d Mon Sep 17 00:00:00 2001 From: Chuck Date: Sun, 11 Jan 2026 15:43:35 -0500 Subject: [PATCH] fix: Swap order of enabled checkbox and hidden input in custom-feeds The hidden input with value="false" was rendered before the checkbox, causing request.form.to_dict() to use the hidden input's value instead of the checkbox's "true" value when checked. Fix by rendering the checkbox first, then the hidden fallback input. This ensures that when the checkbox is checked, its "true" value overwrites the hidden input's "false" value in request.form.to_dict(). The hidden input still serves as a fallback to ensure "false" is submitted when the checkbox is unchecked (since unchecked checkboxes don't submit a value). --- web_interface/templates/v3/partials/plugin_config.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_interface/templates/v3/partials/plugin_config.html b/web_interface/templates/v3/partials/plugin_config.html index c43243e9..86f1c2ef 100644 --- a/web_interface/templates/v3/partials/plugin_config.html +++ b/web_interface/templates/v3/partials/plugin_config.html @@ -259,12 +259,12 @@ - +