ng-ipa-library 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1306,7 +1306,7 @@ class AuthService {
1306
1306
  setCurrentUserFromHidden() {
1307
1307
  const decodedToken = this.getDecodedTokenFromHidden();
1308
1308
  this.currentUser.next({
1309
- nameid: decodedToken.nameid,
1309
+ nameid: decodedToken.nameid?.split('\\')[1],
1310
1310
  email: decodedToken.email,
1311
1311
  given_name: decodedToken.given_name,
1312
1312
  exp: decodedToken.exp,