Fix crash when username is null in mms auth
Fixes #2850 Closes #2863 // FREEBIE
This commit is contained in:
parent
beceee846a
commit
796c5de5d5
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ public abstract class LegacyMmsConnection {
|
|||
}
|
||||
|
||||
public boolean hasAuthentication() {
|
||||
return !TextUtils.isEmpty(username) || !TextUtils.isEmpty(password);
|
||||
return !TextUtils.isEmpty(username);
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
|
|
Loading…
Add table
Reference in a new issue