mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Fix issue #124 - Wrong visibility for boosts
This commit is contained in:
parent
a64244bf11
commit
6c9329eec6
1 changed files with 1 additions and 1 deletions
|
@ -799,7 +799,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||||
holder.binding.boosterDivider.setVisibility(View.GONE);
|
holder.binding.boosterDivider.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
//--- BOOST VISIBILITY ---
|
//--- BOOST VISIBILITY ---
|
||||||
switch (status.visibility) {
|
switch (statusToDeal.visibility) {
|
||||||
case "public":
|
case "public":
|
||||||
case "unlisted":
|
case "unlisted":
|
||||||
holder.binding.actionButtonBoost.setVisibility(View.VISIBLE);
|
holder.binding.actionButtonBoost.setVisibility(View.VISIBLE);
|
||||||
|
|
Loading…
Reference in a new issue