From a1528bcc0304ca4cce1a088c557e0e7d806309d9 Mon Sep 17 00:00:00 2001 From: Hivert Quentin Date: Sat, 9 Sep 2023 11:43:24 +0200 Subject: [PATCH] fix(cas): correction on pgtUrl --- SoObjects/SOGo/SOGoCASSession.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SoObjects/SOGo/SOGoCASSession.m b/SoObjects/SOGo/SOGoCASSession.m index 457012153..9bdfef58d 100644 --- a/SoObjects/SOGo/SOGoCASSession.m +++ b/SoObjects/SOGo/SOGoCASSession.m @@ -400,8 +400,7 @@ application = [WOApplication application]; request = [[application context] request]; - pgtURL = [NSString stringWithFormat: @"https://%@/%@/casProxy", - [soURL host], [request applicationName]]; + pgtURL = [NSString stringWithFormat: @"%@casProxy", [soURL absoluteString]]; return pgtURL; }