diff options
Diffstat (limited to 'pyload/webui/app')
-rw-r--r-- | pyload/webui/app/pyloadweb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/webui/app/pyloadweb.py b/pyload/webui/app/pyloadweb.py index f04c6906b..cc2185fd4 100644 --- a/pyload/webui/app/pyloadweb.py +++ b/pyload/webui/app/pyloadweb.py @@ -256,7 +256,7 @@ def config(): name, none, type = desc.partition("_") if type in PYLOAD.core.pluginManager.TYPES: - if name != last_name or len([a for a, b in plugin.iteritems() if b.description.startswith(name + "_")]) > 1: + if name == last_name or len([a for a, b in plugin.iteritems() if b.description.startswith(name + "_")]) > 1: desc = name + " (" + type.title() + ")" else: desc = name |