From d649fb8647c07525a1f24d2d5c16631274a18c29 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Tue, 5 Apr 2022 10:24:06 +0200 Subject: [PATCH] Fix removeSessionItem not working --- api/js/jsapi/egw_store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/jsapi/egw_store.js b/api/js/jsapi/egw_store.js index bf4709c1df..6a11e759a4 100644 --- a/api/js/jsapi/egw_store.js +++ b/api/js/jsapi/egw_store.js @@ -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); },