Parcourir la source

Set password to empty string instead of None

Prevent exception in auth module.
Unrud il y a 9 ans
Parent
commit
fe5daf801a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      radicale/__init__.py

+ 1 - 1
radicale/__init__.py

@@ -338,7 +338,7 @@ class Application:
             user = self.Auth.map_login_to_user(login)
         else:
             user = self.Auth.map_login_to_user(environ.get("REMOTE_USER", ""))
-            password = None
+            password = ""
 
         # If "/.well-known" is not available, clients query "/"
         if path == "/.well-known" or path.startswith("/.well-known/"):