mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
fix(user_ldap): Use correct property to update login filter
Signed-off-by: Louis Chmn <louis@chmn.me>
This commit is contained in:
committed by
nextcloud-command
parent
499bbd479a
commit
ea4e5ae3e7
@@ -120,7 +120,7 @@ async function reloadFilters() {
|
||||
|
||||
const response2 = await callWizard('getUserLoginFilter', props.configId)
|
||||
// Not using ldapConfig to avoid triggering the save logic.
|
||||
ldapConfigs.value[props.configId]!.ldapLoginFilter = (response2.changes?.ldap_userlogin_filter as string | undefined) ?? ''
|
||||
ldapConfigs.value[props.configId]!.ldapLoginFilter = (response2.changes?.ldap_login_filter as string | undefined) ?? ''
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user