You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/core/js_modules/Hm_MessagesStore.js
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ class Hm_MessagesStore {
104
104
if(messagesReadyCB){
105
105
messagesReadyCB(this);
106
106
}
107
-
},this);
107
+
});
108
108
109
109
returnthis;
110
110
}
@@ -235,12 +235,13 @@ class Hm_MessagesStore {
235
235
236
236
letstore=this;
237
237
returnthis.getRequestConfigs().map((config)=>{
238
+
constinitialConfig=Object.assign([],config);
238
239
returnnewPromise((resolve,reject)=>{
239
240
Hm_Ajax.request(
240
241
config,
241
242
(response)=>{
242
243
if(response){
243
-
response.sourceId=store.hashObject(config);
244
+
response.sourceId=store.hashObject(initialConfig);// Do not use this config object because the request appends a "hm_page_key" entry, which would change the hash
0 commit comments