@esfaenza/core 19.2.62 → 19.2.64

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.
@@ -1238,6 +1238,7 @@ class AppState {
1238
1238
  this.emb.refreshBoundariesOnMenuCollapse();
1239
1239
  });
1240
1240
  }
1241
+ // Stesso codice in AppSession, vedere se si può compattare
1241
1242
  /** Tenant§Account§User§APPNAME */
1242
1243
  getSessionIdentity() {
1243
1244
  if (this.SessionIdentity)
@@ -1250,7 +1251,7 @@ class AppState {
1250
1251
  this.router.navigate(["login"]);
1251
1252
  return "";
1252
1253
  }
1253
- this.SessionIdentity = "" + id.Idtenant + "§" + id.IdAccount + "§" + id.IdUser + "§" + myconfig.AppData.ModuleId;
1254
+ this.SessionIdentity = "" + id.Idtenant + "§" + id.IdAccount + "§" + id.IdUser + "§" + myconfig?.AppData?.ModuleId;
1254
1255
  return this.SessionIdentity;
1255
1256
  }
1256
1257
  registerNavigationIfMeaningful(route) {