mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 12:34:43 +00:00
fix displaying empty '' filters
This commit is contained in:
parent
42b3dc7dde
commit
2edf19c187
@ -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…
x
Reference in New Issue
Block a user