Merge pull request #497 from jitsi/bugfix/4.4/sasl-anonymous

Prevent password enforcement for SASL anonymous
This commit is contained in:
Florian Schmaus 2021-10-19 14:09:39 +02:00 committed by GitHub
commit 9fb7d6d97c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -60,4 +60,8 @@ public class SASLAnonymous extends SASLMechanism {
// SASL Anonymous is always successful :)
}
@Override
public boolean requiresPassword() {
return false;
}
}