From 11353c419812ef24c9adef371c83a005756f5dfa Mon Sep 17 00:00:00 2001 From: Calum Bulmer Date: Mon, 1 Sep 2025 00:26:44 +0100 Subject: [PATCH] Fix Bug in Redirection Host Schema preventing auto redirection hosts from being added This commit fixes bug's #4692 and #4080. A previous attempt to fix this issue ( commit d96a398 ) referenced the wrong string from the ui. --- backend/schema/components/redirection-host-object.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/schema/components/redirection-host-object.json b/backend/schema/components/redirection-host-object.json index e7a495fd3..012f971eb 100644 --- a/backend/schema/components/redirection-host-object.json +++ b/backend/schema/components/redirection-host-object.json @@ -28,7 +28,7 @@ }, "forward_scheme": { "type": "string", - "enum": ["auto", "http", "https"] + "enum": ["$scheme", "http", "https"] }, "forward_domain_name": { "description": "Domain Name",