Fix removeSessionItem not working

This commit is contained in:
Hadi Nategh 2022-04-05 10:24:06 +02:00
parent 88646cf5a5
commit d649fb8647

View File

@ -76,7 +76,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);
},