Fix issue #930 - Crash with Pixelfed

This commit is contained in:
Thomas 2023-08-09 17:06:06 +02:00
parent c017558984
commit 147917fc58
1 changed files with 1 additions and 1 deletions

View File

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