Only allow ACI auth for websocket at this time.

This commit is contained in:
Cody Henthorne
2025-03-28 10:30:05 -04:00
parent ca8aa78705
commit d87b313fb3

View File

@@ -18,7 +18,7 @@ public interface CredentialsProvider {
String getPassword(); String getPassword();
default boolean isInvalid() { default boolean isInvalid() {
return (getAci() == null && getE164() == null) || getPassword() == null; return getAci() == null || getPassword() == null;
} }
default String getUsername() { default String getUsername() {