diff --git a/deluge/ui/web/js/Deluge.ConnectionManager.js b/deluge/ui/web/js/Deluge.ConnectionManager.js index 4c4e6a5b2..137fb07c3 100644 --- a/deluge/ui/web/js/Deluge.ConnectionManager.js +++ b/deluge/ui/web/js/Deluge.ConnectionManager.js @@ -302,12 +302,8 @@ Copyright: }, onGetHosts: function(hosts) { - var store = this.grid.getStore(); + this.grid.getStore().loadData(hosts); Ext.each(hosts, function(host) { - var record = store.getById(host[0]); - if (!record) { - store.loadData([host], true); - } Deluge.Client.web.get_host_status(host[0], { success: this.onGetHostStatus, scope: this