From b0d91b0db3576a2dc7b4ebac518724d8063c5de1 Mon Sep 17 00:00:00 2001 From: winter Sparkles Date: Sun, 9 Aug 2026 16:17:29 +0100 Subject: fix auth-request so it works better --- Psso/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Psso/Router.php') diff --git a/Psso/Router.php b/Psso/Router.php index ba0dd53..6ad63cd 100644 --- a/Psso/Router.php +++ b/Psso/Router.php @@ -41,7 +41,7 @@ class Router { function dispatch(string $path) { // actually check the hostname lol if ($_SERVER['HTTP_HOST'] != $this->config['site']['primary-domain'] && - $path != '/continue') { + $path != '/continue' && !str_starts_with($path, '/integration/')) { header('Location: https://' . $this->config['site']['primary-domain']); return; -- cgit v1.3