mirror of
https://codeberg.org/tom79/Fedilab
synced 2024-12-16 05:17:50 +01:00
Fix issue #930 - Crash with Pixelfed
This commit is contained in:
parent
c017558984
commit
147917fc58
@ -1444,7 +1444,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||
holder.binding.containerTrans.setVisibility(View.GONE);
|
||||
}
|
||||
if (statusToDeal.spoiler_text == null || statusToDeal.spoiler_text.trim().isEmpty() || statusToDeal.isExpended) {
|
||||
if (statusToDeal.content.trim().length() == 0) {
|
||||
if (statusToDeal.content == null || statusToDeal.content.trim().length() == 0) {
|
||||
holder.binding.mediaContainer.setVisibility(View.GONE);
|
||||
} else {
|
||||
if (!status.mathsShown) {
|
||||
|
Loading…
Reference in New Issue
Block a user