mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-15 04:26:14 +00:00
Be sure not to use blank passwords as the password
This commit is contained in:
@@ -46,11 +46,12 @@ class SaltyPasswordField(StringField):
|
||||
# incoming
|
||||
def process_formdata(self, valuelist):
|
||||
if valuelist:
|
||||
# Remove empty strings
|
||||
self.encrypted_password = self.build_password(valuelist[0])
|
||||
self.data = []
|
||||
# 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 = ""
|
||||
else:
|
||||
self.data = []
|
||||
self.data = False
|
||||
|
||||
|
||||
# Separated by key:value
|
||||
|
||||
Reference in New Issue
Block a user