fix authentik not being removed when toggle is disabled

This commit is contained in:
fuomag9
2026-03-06 09:34:26 +01:00
parent c76004f8ac
commit 641ab9ef34
2 changed files with 9 additions and 1 deletions
+3
View File
@@ -587,6 +587,9 @@ function normalizeAuthentikInput(
if (input === null) {
return undefined;
}
if (input.enabled === false) {
return undefined;
}
const next: ProxyHostAuthentikMeta = { ...(existing ?? {}) };