Use star for unexposed messages

This commit is contained in:
M66B
2024-03-03 11:00:50 +01:00
parent 8ddaa84bae
commit ff56e509e5
4 changed files with 4 additions and 4 deletions

View File

@@ -232,7 +232,7 @@ public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHold
if (account.unseen > 0)
sb.append(NF.format(account.unseen));
if (unexposed > 0)
sb.append('\u207A');
sb.append('\u2B51');
tvName.setText(context.getString(R.string.title_name_count, account.name, sb));
} else
tvName.setText(account.name);