From d78dbbd45ff8e69d4132e774b7d7e03cb3d44eae Mon Sep 17 00:00:00 2001 From: "Jens L." Date: Fri, 20 Mar 2026 19:27:22 +0100 Subject: [PATCH] flows: continous login debug 2025.12 (#21044) * flows: continous login debug 2025.12 Signed-off-by: Jens Langhammer * no hardcoded prefix Signed-off-by: Jens Langhammer --------- Signed-off-by: Jens Langhammer --- web/src/flow/FlowExecutor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/flow/FlowExecutor.ts b/web/src/flow/FlowExecutor.ts index ebe4820fca..aeca334b0d 100644 --- a/web/src/flow/FlowExecutor.ts +++ b/web/src/flow/FlowExecutor.ts @@ -182,7 +182,7 @@ export class FlowExecutor const next = qs.get("next"); if (next) { const url = new URL(next, window.location.origin); - if (url.origin !== window.location.origin) { + if (!url.pathname.startsWith(`${globalAK().api.relBase}if/flow`)) { multiTabOrchestrateLeave(); } window.location.assign(url);