Fix removeSessionItem not working

This commit is contained in:
Hadi Nategh 2022-04-05 10:24:06 +02:00
parent a763b84be4
commit 8b147bc285

View File

@ -77,7 +77,7 @@ egw.extend('store', egw.MODULE_GLOBAL, function(_app, _wnd)
* @returns {@exp;window@pro;sessionStorage@call;removeItem}
*/
removeSessionItem: function(application, key) {
key = uniqueKey(application, key);
key = mapKey(application, key);
return _wnd.sessionStorage.removeItem(key);
},