From 269e0b89b6081b975fd59bec48d9c2d6d2b8d4c7 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 28 Apr 2010 15:10:58 +0100 Subject: [PATCH] dont enable plugins twice --- deluge/ui/web/js/deluge-all/UI.js | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/ui/web/js/deluge-all/UI.js b/deluge/ui/web/js/deluge-all/UI.js index af5c3f75b..15f788123 100644 --- a/deluge/ui/web/js/deluge-all/UI.js +++ b/deluge/ui/web/js/deluge-all/UI.js @@ -172,6 +172,7 @@ deluge.ui = { onGotPlugins: function(plugins) { Ext.each(plugins.enabled_plugins, function(plugin) { + if (deluge.plugins[plugin]) return; deluge.client.web.get_plugin_resources(plugin, { success: this.onGotPluginResources, scope: this