Use account color always as inbox color

This commit is contained in:
M66B 2024-05-21 21:52:07 +02:00
parent 4ffca45484
commit 23c2f9da53
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
if (listener == null) {
Integer color =
(folder.color == null && unified && EntityFolder.INBOX.equals(folder.type)
(folder.color == null && EntityFolder.INBOX.equals(folder.type)
? folder.accountColor : folder.color);
vwColor.setBackgroundColor(color == null ? Color.TRANSPARENT : color);
vwColor.setVisibility(ActivityBilling.isPro(context) ? View.VISIBLE : View.GONE);