Added folder subtype flagged

This commit is contained in:
M66B
2023-01-18 20:54:42 +01:00
parent 41e9935c88
commit cbebeb29d2
6 changed files with 2877 additions and 4 deletions

View File

@@ -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));