mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 20:44:50 +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
|
// Grab the filters from each of the filter panels
|
||||||
this.items.each(function(panel) {
|
this.items.each(function(panel) {
|
||||||
var filter = panel.getFilter();
|
var filter = panel.getFilter();
|
||||||
if (!filter) return;
|
if (!filter == null) return;
|
||||||
filters[panel.filterType] = filter;
|
filters[panel.filterType] = filter;
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user