Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 48be6f4b authored by cketti's avatar cketti Committed by GitHub
Browse files

Merge pull request #5622 from k9mail/fix_missing_password_check_again

Fix ServerSettings.isMissingCredentials
parents dd151ec6 32aefc27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ data class ServerSettings @JvmOverloads constructor(
) {
    val isMissingCredentials: Boolean = when (authenticationType) {
        AuthType.EXTERNAL -> clientCertificateAlias == null
        else -> password == null
        else -> username.isNotBlank() && password == null
    }

    init {