diff options
Diffstat (limited to 'modules/extra/m_ldap_authentication.cpp')
-rw-r--r-- | modules/extra/m_ldap_authentication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/m_ldap_authentication.cpp b/modules/extra/m_ldap_authentication.cpp index 5340038dd..1d44c807f 100644 --- a/modules/extra/m_ldap_authentication.cpp +++ b/modules/extra/m_ldap_authentication.cpp @@ -143,7 +143,7 @@ class OnIdentifyInterface : public LDAPInterface { User *u = User::Find(uid); - if (!u || !u->Account() || r.empty()) + if (!u || !u->IsIdentified() || r.empty()) return; try |