mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Refactoring
This commit is contained in:
@@ -3840,9 +3840,12 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
}
|
||||
|
||||
if (Boolean.FALSE.equals(message.reply_domain)) {
|
||||
if (sb.length() > 0)
|
||||
sb.append('\n');
|
||||
sb.append(message.checkReplyDomain(context));
|
||||
String[] warning = message.checkReplyDomain(context);
|
||||
if (warning != null) {
|
||||
if (sb.length() > 0)
|
||||
sb.append('\n');
|
||||
sb.append(context.getString(R.string.title_reply_domain, warning[0], warning[1]));
|
||||
}
|
||||
}
|
||||
|
||||
if (message.from != null && message.from.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user