[DEV] missing /
This commit is contained in:
parent
a011492f50
commit
0eb9163fd8
@ -34,7 +34,11 @@ export class SSOService {
|
||||
if (pathName.startsWith("/sso/") || pathName.startsWith(environment.applName + "/sso/")) {
|
||||
return this.utf8_to_b64('home');
|
||||
}
|
||||
if (pathName.startsWith(environment.applName + '/')) {
|
||||
if (pathName.startsWith('/' + environment.applName + '/')) {
|
||||
pathName = pathName.substring(environment.applName.length+2);
|
||||
} else if (pathName.startsWith('/' + environment.applName)) {
|
||||
pathName = pathName.substring(environment.applName.length + 1);
|
||||
} else if (pathName.startsWith(environment.applName + '/')) {
|
||||
pathName = pathName.substring(environment.applName.length+1);
|
||||
} else if (pathName.startsWith(environment.applName)) {
|
||||
pathName = pathName.substring(environment.applName.length);
|
||||
|
Loading…
Reference in New Issue
Block a user