mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Unbreak tests
This commit is contained in:
parent
ca44d0e036
commit
6ef80e8335
1 changed files with 6 additions and 3 deletions
|
@ -66,9 +66,12 @@ func (s *SASLAuth) SASLMechanisms() []string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SASLAuth) usernameForAuth(ctx context.Context, saslUsername string) (string, error) {
|
func (s *SASLAuth) usernameForAuth(ctx context.Context, saslUsername string) (string, error) {
|
||||||
saslUsername, err := s.AuthNormalize(saslUsername)
|
if s.AuthNormalize != nil {
|
||||||
if err != nil {
|
var err error
|
||||||
return "", err
|
saslUsername, err = s.AuthNormalize(saslUsername)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.AuthMap == nil {
|
if s.AuthMap == nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue