diff --git a/deluge/ui/webui/pages.py b/deluge/ui/webui/pages.py index 5605929b4..64f3e5f8e 100644 --- a/deluge/ui/webui/pages.py +++ b/deluge/ui/webui/pages.py @@ -106,7 +106,7 @@ class index: #organize-filters label_filters = {} - if 'label' in proxy.get_enabled_plugins(): + if 'label' in [pl.lower() for pl in proxy.get_enabled_plugins()]: filter_dict = {} if vars.filter_cat and vars.filter_value and vars.filter_value <> "All": filter_dict = {vars.filter_cat:vars.filter_value} diff --git a/deluge/ui/webui/templates/white/index.html b/deluge/ui/webui/templates/white/index.html index 817c85c92..00df67f96 100644 --- a/deluge/ui/webui/templates/white/index.html +++ b/deluge/ui/webui/templates/white/index.html @@ -23,7 +23,13 @@ $if label_filters: -
+ +