1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 23:12:55 +00:00

Show TLS status

This commit is contained in:
M66B 2022-01-08 11:05:25 +01:00
parent 4f1311036d
commit 0d236e5dcd

View file

@ -3846,7 +3846,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
if (result.size() > 0) if (result.size() > 0)
sb.append(context.getString(R.string.title_authentication_failed, TextUtils.join(", ", result))); sb.append(context.getString(R.string.title_authentication_failed, TextUtils.join(", ", result)));
else { else {
if (BuildConfig.DEBUG) if (check_tls)
sb.append("TLS: ") sb.append("TLS: ")
.append(message.tls == null ? "-" : (message.tls ? "" : "")) .append(message.tls == null ? "-" : (message.tls ? "" : ""))
.append('\n'); .append('\n');