fix(cas): correction on pgtUrl

This commit is contained in:
Hivert Quentin
2023-09-09 11:43:24 +02:00
parent 041bb98e9d
commit a1528bcc03
+1 -2
View File
@@ -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;
}