mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-23 17:20:04 +02:00
Fix issue #463 - Add reply counter when counters are enabled
This commit is contained in:
parent
7500f1cd7b
commit
1dae37549b
1 changed files with 1 additions and 0 deletions
|
@ -1019,6 +1019,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
holder.binding.editTime.setVisibility(View.GONE);
|
||||
holder.binding.visibilitySmall.setImageResource(ressource);
|
||||
if (displayCounters && canBeFederated) {
|
||||
holder.binding.replyCount.setText(String.valueOf(statusToDeal.replies_count));
|
||||
holder.binding.statusInfo.setVisibility(View.VISIBLE);
|
||||
holder.binding.dateShort.setVisibility(View.GONE);
|
||||
holder.binding.visibilitySmall.setVisibility(View.GONE);
|
||||
|
|
Loading…
Reference in a new issue