fix typo of a method name
This commit is contained in:
parent
5a6fda0afe
commit
8e45e77c74
|
@ -928,7 +928,7 @@ Deluge.Widgets.PreferencesWindow = new Class({
|
||||||
this.categories.each(function(category) {
|
this.categories.each(function(category) {
|
||||||
config = $merge(config, category.getConfig());
|
config = $merge(config, category.getConfig());
|
||||||
});
|
});
|
||||||
if ($defined(config['end_listen_port']) || $definied(config['start_listen_port'])) {
|
if ($defined(config['end_listen_port']) || $defined(config['start_listen_port'])) {
|
||||||
var startport = $pick(config['start_listen_port'], this.config['listen_ports'][0]);
|
var startport = $pick(config['start_listen_port'], this.config['listen_ports'][0]);
|
||||||
var endport = $pick(config['end_listen_port'], this.config['listen_ports'][1]);
|
var endport = $pick(config['end_listen_port'], this.config['listen_ports'][1]);
|
||||||
delete config['end_listen_port'];
|
delete config['end_listen_port'];
|
||||||
|
|
Loading…
Reference in New Issue