diff options
Diffstat (limited to 'module/web')
-rw-r--r-- | module/web/pyload/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py index 874f25ebf..8c32d36a4 100644 --- a/module/web/pyload/views.py +++ b/module/web/pyload/views.py @@ -351,7 +351,7 @@ def config(request): elif action == "password": for acc in accs[skey]: - if acc["login"] == name and acc["password"] != value: + if acc["login"] == name and value.strip(): settings.PYLOAD.update_account(skey, name, value) elif okey == "newacc" and value: |