mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Added folder subtype flagged
This commit is contained in:
@@ -377,7 +377,8 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
||||
tvType.setText(EntityFolder.localizeType(context, folder.type) +
|
||||
(folder.inherited_type == null || !(BuildConfig.DEBUG || EntityFolder.SENT.equals(folder.inherited_type))
|
||||
? ""
|
||||
: "/" + EntityFolder.localizeType(context, folder.inherited_type)));
|
||||
: "/" + EntityFolder.localizeType(context, folder.inherited_type)) +
|
||||
(EntityFolder.FLAGGED.equals(folder.subtype) ? "*" : ""));
|
||||
|
||||
tvTotal.setText(folder.total == null ? null : NF.format(folder.total));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user