From 453b207bcc02f72bc7cf3dba8ee38ceebe11df7f Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 14 Dec 2020 12:09:19 +0100 Subject: [PATCH] Remove the throttled function from memory only --- www/common/outer/cache-store.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/www/common/outer/cache-store.js b/www/common/outer/cache-store.js index 4b21e22fe..7a0a50209 100644 --- a/www/common/outer/cache-store.js +++ b/www/common/outer/cache-store.js @@ -118,9 +118,6 @@ define([ }; S.leaveChannel = function (id) { - if (t[id] && typeof(t[id].clear) === "function") { - t[id].clear(); - } delete t[id]; };