From 64ce622f8381ffbecbae98c9a4760917cd586377 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Thu, 1 Mar 2012 15:57:01 +0100 Subject: [PATCH] ExtensionSystem: fix uninstalling from website uninstall function was still referring to the old state and error objects, which were removed by the refactoring. https://bugzilla.gnome.org/show_bug.cgi?id=671134 --- js/ui/extensionSystem.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/ui/extensionSystem.js b/js/ui/extensionSystem.js index a5f00233c..fb811c2fb 100644 --- a/js/ui/extensionSystem.js +++ b/js/ui/extensionSystem.js @@ -103,8 +103,6 @@ function uninstallExtensionFromUUID(uuid) { _signals.emit('extension-state-changed', extension); delete ExtensionUtils.extensions[uuid]; - delete extensionStateObjs[uuid]; - delete errors[uuid]; FileUtils.recursivelyDeleteDir(Gio.file_new_for_path(extension.path));