@sapui5/sap.fe.navigation 1.148.3 → 1.148.4

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.
@@ -1097,7 +1097,10 @@ export class NavigationHandler extends BaseObject {
1097
1097
  this._oLastSavedInnerAppData.iCacheHit++;
1098
1098
 
1099
1099
  // replace inner app hash with cached appStateKey in url (just in case the app has changed the hash in meantime)
1100
- fnReplaceHash(sAppStateKeyCached);
1100
+ // bSkipHashReplace must be checked here too, same as in the cache-miss paths below
1101
+ if (!bSkipHashReplace) {
1102
+ fnReplaceHash(sAppStateKeyCached);
1103
+ }
1101
1104
  oMyDeferred.resolve(sAppStateKeyCached);
1102
1105
  return oMyDeferred.promise();
1103
1106
  }
@@ -147,7 +147,7 @@ sap.ui.define(["sap/ui/core/Lib", "sap/ui/core/library"], function (Library, _li
147
147
  name: "sap.fe.navigation",
148
148
  apiVersion: 2,
149
149
  // eslint-disable-next-line no-template-curly-in-string
150
- version: "1.148.3",
150
+ version: "1.148.4",
151
151
  dependencies: ["sap.ui.core"],
152
152
  types: ["sap.fe.navigation.NavType", "sap.fe.navigation.ParamHandlingMode", "sap.fe.navigation.SuppressionBehavior"],
153
153
  interfaces: [],