mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Prevent crash
This commit is contained in:
@@ -285,7 +285,7 @@ public class EntityAnswer implements Serializable {
|
||||
|
||||
ssb.append(" host ");
|
||||
start = ssb.length();
|
||||
ssb.append(p.imap.host);
|
||||
ssb.append(p.imap.host == null ? "?" : p.imap.host);
|
||||
ssb.setSpan(new StyleSpan(Typeface.BOLD),
|
||||
start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
|
||||
@@ -307,7 +307,7 @@ public class EntityAnswer implements Serializable {
|
||||
|
||||
ssb.append(" host ");
|
||||
start = ssb.length();
|
||||
ssb.append(p.smtp.host);
|
||||
ssb.append(p.smtp.host == null ? "?" : p.smtp.host);
|
||||
ssb.setSpan(new StyleSpan(Typeface.BOLD),
|
||||
start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user