diff --git a/dmp-frontend/src/app/core/services/auth/auth.service.ts b/dmp-frontend/src/app/core/services/auth/auth.service.ts index 6a1a91484..66a52f3bc 100644 --- a/dmp-frontend/src/app/core/services/auth/auth.service.ts +++ b/dmp-frontend/src/app/core/services/auth/auth.service.ts @@ -127,7 +127,8 @@ export class AuthService extends BaseService { } public me(): Observable { - const url = this.actionUrl + '/me'; + this.actionUrl = this.configurationService.server + 'auth/'; + const url = this.actionUrl + 'me'; const principal = this.current(); if (!principal) { this.clear();