mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-27 21:25:30 +00:00
use keys() rather than getKeys()
This commit is contained in:
parent
3b744ae978
commit
4939b8c72e
1 changed files with 2 additions and 2 deletions
|
@ -183,8 +183,8 @@ Copyright:
|
||||||
}
|
}
|
||||||
|
|
||||||
// Perform a cleanup of fitlers that aren't enabled any more
|
// Perform a cleanup of fitlers that aren't enabled any more
|
||||||
Ext.each(Ext.getKeys(this.panels), function(filter) {
|
Ext.each(Ext.keys(this.panels), function(filter) {
|
||||||
if (Ext.getKeys(filters).indexOf(filter) == -1) {
|
if (Ext.keys(filters).indexOf(filter) == -1) {
|
||||||
// We need to remove the panel
|
// We need to remove the panel
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue