X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/10194a885f07b7d024aa806515a13588263d71e7..19e1b120e85f3cf3906c640af47c5084b09dd3be:/lib/python/Screens/PluginBrowser.py diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index 75599c2b..e9b009ae 100644 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -109,10 +109,13 @@ class PluginDownloadBrowser(Screen): def startRun(self): self["list"].instance.hide() - self.container.execute("ipkg update") + if self.type == self.DOWNLOAD: + self.container.execute("ipkg update") + elif self.type == self.REMOVE: + self.run = 1 + self.container.execute("ipkg list_installed enigma2-plugin-*") def installFinished(self): - plugins.clearPluginList() plugins.readPluginList(resolveFilename(SCOPE_PLUGINS)) self.close() @@ -121,8 +124,6 @@ class PluginDownloadBrowser(Screen): self.run = 1 if self.type == self.DOWNLOAD: self.container.execute("ipkg list enigma2-plugin-*") - elif self.type == self.REMOVE: - self.container.execute("ipkg list_installed enigma2-plugin-*") else: if len(self.pluginlist) > 0: self.updateList()