diff --git a/js/plugins/EncryptedLocalStorage.js b/js/plugins/EncryptedLocalStorage.js index 1cf2c3af2..89c104cab 100644 --- a/js/plugins/EncryptedLocalStorage.js +++ b/js/plugins/EncryptedLocalStorage.js @@ -49,7 +49,7 @@ EncryptedLocalStorage.prototype.setItem = function(name, value, callback) { }; EncryptedLocalStorage.prototype.removeItem = function(name, callback) { - InsightStorage.prototype.removeItem.apply(this, [name, callback]); + LocalStorage.prototype.removeItem.apply(this, [name, callback]); };