@ -483,6 +483,9 @@ def changedetection_app(config=None, datastore_o=None):
flash("Password protection enabled.", 'notice')
flask_login.logout_user()
return redirect(url_for('index'))
else:
# Unset it anyway, just to be sure.
datastore.data['settings']['application']['password'] = False
flash("Settings updated.")
@ -46,11 +46,12 @@ class SaltyPasswordField(StringField):
# incoming
def process_formdata(self, valuelist):
if valuelist:
# Remove empty strings
# Be really sure it's non-zero in length
if len(valuelist[0].strip()) > 0:
self.encrypted_password = self.build_password(valuelist[0])
self.data = []
self.data = ""
self.data = False
# Separated by key:value