@magic-xpa/engine 4.901.0-ang15 → 4.901.0-ang15-dev491.313

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.
@@ -5688,12 +5688,22 @@ class RemoteCommandsProcessor extends CommandsProcessorBase {
5688
5688
  }
5689
5689
  }
5690
5690
  }
5691
- window.localStorage.clear();
5691
+ this.clearLocalStorage();
5692
5692
  throw ex;
5693
5693
  }
5694
5694
  return response;
5695
5695
  });
5696
5696
  }
5697
+ clearLocalStorage() {
5698
+ window.localStorage.removeItem(ConstInterface.LAST_ROUTE_EVENT);
5699
+ window.localStorage.removeItem(ConstInterface.LAST_ROUTE_EVENT_SRC_TSK);
5700
+ window.localStorage.removeItem(ConstInterface.LAST_ROUTE_EVENT_ARG_LIST);
5701
+ window.localStorage.removeItem(ConstInterface.IS_SESSION_REINITIALIZING);
5702
+ window.localStorage.removeItem(ConstInterface.MAIN_PROG_VIEW);
5703
+ window.localStorage.removeItem(ConstInterface.GLOBAL_PARAM_LIST);
5704
+ window.localStorage.removeItem(ConstInterface.LAST_EXCEPTION);
5705
+ window.localStorage.removeItem(ConstInterface.CTX_REMOVED_FROM_SRVR);
5706
+ }
5697
5707
  HandleErrorResponse(response) {
5698
5708
  try {
5699
5709
  Logger.Instance.WriteServerMessagesToLog("MESSAGE FROM SERVER: " + response);
@@ -30366,7 +30376,7 @@ class CommandsTable {
30366
30376
  }
30367
30377
  }
30368
30378
 
30369
- let CurrentClientVersion = '4.901.0-ang15';
30379
+ let CurrentClientVersion = '4.901.0-ang15-dev491.313';
30370
30380
 
30371
30381
  class ClientManager {
30372
30382
  static get Instance() {