mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Revert "Bounded contact info thread pools"
This reverts commit 213004bef6.
This commit is contained in:
@@ -311,12 +311,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
private DateFormat TF;
|
||||
private DateFormat DTF;
|
||||
|
||||
private static final int processors =
|
||||
Runtime.getRuntime().availableProcessors();
|
||||
private static final ExecutorService executor =
|
||||
Helper.getBackgroundExecutor(2, "differ");
|
||||
private static final ExecutorService executorContactInfo =
|
||||
Helper.getBackgroundExecutor(Math.max(1, processors / 2), "contact");
|
||||
|
||||
private static final int MAX_RECIPIENTS_COMPACT = 3;
|
||||
private static final int MAX_RECIPIENTS_NORMAL = 7;
|
||||
@@ -1486,7 +1482,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
|
||||
}
|
||||
}.setLog(false).setExecutor((executorContactInfo));
|
||||
}.setLog(false);
|
||||
taskContactInfo.execute(context, owner, aargs, "message:avatar");
|
||||
} else
|
||||
bindContactInfo(message, info, addresses);
|
||||
|
||||
Reference in New Issue
Block a user