mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
fix displaying empty '' filters
This commit is contained in:
parent
42b3dc7dde
commit
2edf19c187
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ Deluge.Sidebar = Ext.extend(Ext.Panel, {
|
|||
// Grab the filters from each of the filter panels
|
||||
this.items.each(function(panel) {
|
||||
var filter = panel.getFilter();
|
||||
if (!filter) return;
|
||||
if (!filter == null) return;
|
||||
filters[panel.filterType] = filter;
|
||||
}, this);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue