mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge branch 'release-v0.25.1'
This commit is contained in:
commit
b102e93571
@ -1,3 +1,11 @@
|
|||||||
|
Changes in synapse v0.25.1 (2017-11-17)
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
* Fix login with LDAP and other password provider modules (PR #2678). Thanks to
|
||||||
|
@jkolo!
|
||||||
|
|
||||||
Changes in synapse v0.25.0 (2017-11-15)
|
Changes in synapse v0.25.0 (2017-11-15)
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
@ -16,4 +16,4 @@
|
|||||||
""" This is a reference implementation of a Matrix home server.
|
""" This is a reference implementation of a Matrix home server.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.25.0"
|
__version__ = "0.25.1"
|
||||||
|
@ -551,7 +551,7 @@ class AuthHandler(BaseHandler):
|
|||||||
qualified_user_id, password,
|
qualified_user_id, password,
|
||||||
)
|
)
|
||||||
if is_valid:
|
if is_valid:
|
||||||
defer.returnValue(qualified_user_id)
|
defer.returnValue((qualified_user_id, None))
|
||||||
|
|
||||||
if (not hasattr(provider, "get_supported_login_types")
|
if (not hasattr(provider, "get_supported_login_types")
|
||||||
or not hasattr(provider, "check_auth")):
|
or not hasattr(provider, "check_auth")):
|
||||||
|
Loading…
Reference in New Issue
Block a user