mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-08 09:18:39 +01:00
Only allow ACI auth for websocket at this time.
This commit is contained in:
+1
-1
@@ -18,7 +18,7 @@ public interface CredentialsProvider {
|
||||
String getPassword();
|
||||
|
||||
default boolean isInvalid() {
|
||||
return (getAci() == null && getE164() == null) || getPassword() == null;
|
||||
return getAci() == null || getPassword() == null;
|
||||
}
|
||||
|
||||
default String getUsername() {
|
||||
|
||||
Reference in New Issue
Block a user