Skip to content

Commit

Permalink
fix: incorrectly ignored logical auth handler when deleting account
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Aug 2, 2023
1 parent 7ce800d commit cb26a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ func replyDelUser(s *Session, msg *ClientComMessage) {
// Disable all authenticators
authnames := store.Store.GetAuthNames()
for _, name := range authnames {
hdl := store.Store.GetAuthHandler(name)
hdl := store.Store.GetLogicalAuthHandler(name)
if !hdl.IsInitialized() {
continue
}
Expand Down

0 comments on commit cb26a28

Please sign in to comment.