@esfaenza/extensions 15.2.35 → 15.2.36

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.
@@ -1115,7 +1115,9 @@ class AppEmbeddingExtensions {
1115
1115
  console.log(`Window message - navigate -> ${event?.data?.url}`);
1116
1116
  var newTab = event?.data?.newTab;
1117
1117
  var replaceState = event?.data?.replaceState;
1118
- if (!window.location.href.includes(this.router.url)) {
1118
+ // Controllo se il router sta seguendo la chiamata attuale. Escludo i query params che sono gli unici che possono essere seccati dai replaceState
1119
+ // e che potrebbero fare del casino
1120
+ if (!window.location.href.includes(this.router.url.split("?")[0])) {
1119
1121
  console.warn("Doppia chiamata di navigazione, ignoro il secondo evento scoordinato dal router");
1120
1122
  return;
1121
1123
  }