mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Some fixes
This commit is contained in:
parent
316e750004
commit
8162e3f171
1 changed files with 6 additions and 2 deletions
|
@ -1280,7 +1280,9 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
public void onGlobalLayout() {
|
||||
holder.binding.mediaContainer.getViewTreeObserver().removeOnGlobalLayoutListener(this);
|
||||
measuredWidth = holder.binding.mediaContainer.getWidth();
|
||||
adapter.notifyItemChanged(0, statusList.size());
|
||||
if (adapter != null && statusList != null) {
|
||||
adapter.notifyItemChanged(0, statusList.size());
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -1294,7 +1296,9 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
holder.binding.displayMedia.setVisibility(View.VISIBLE);
|
||||
holder.binding.displayMedia.setOnClickListener(v -> {
|
||||
statusToDeal.canLoadMedia = true;
|
||||
adapter.notifyItemChanged(holder.getBindingAdapterPosition());
|
||||
if (adapter != null) {
|
||||
adapter.notifyItemChanged(holder.getBindingAdapterPosition());
|
||||
}
|
||||
});
|
||||
} else {
|
||||
int mediaPosition = 1;
|
||||
|
|
Loading…
Reference in a new issue