Version 5.4.0. Minor bugs fixed in PostGalleryTypeImageRecyclerViewAdapter.

This commit is contained in:
Docile-Alligator 2023-02-06 13:53:21 -05:00
parent c7882b1f65
commit e88c2e957b
2 changed files with 14 additions and 5 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId "ml.docilealligator.infinityforreddit"
minSdk 21
targetSdk 33
versionCode 113
versionName "5.4.0-beta4"
versionCode 114
versionName "5.4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {

View File

@ -123,8 +123,12 @@ public class PostGalleryTypeImageRecyclerViewAdapter extends RecyclerView.Adapte
if (galleryImages == null || galleryImages.isEmpty()) {
return;
}
int index = holder.getBindingAdapterPosition();
if (index < 0 || index >= galleryImages.size()) {
return;
}
RequestBuilder<Drawable> imageRequestBuilder = glide.load(galleryImages.get(holder.getBindingAdapterPosition()).url).listener(new RequestListener<>() {
RequestBuilder<Drawable> imageRequestBuilder = glide.load(galleryImages.get(index).url).listener(new RequestListener<>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
holder.binding.progressBarItemGalleryImageInPostFeed.setVisibility(View.GONE);
@ -152,8 +156,13 @@ public class PostGalleryTypeImageRecyclerViewAdapter extends RecyclerView.Adapte
return;
}
String previewCaption = galleryImages.get(holder.getBindingAdapterPosition()).caption;
String previewCaptionUrl = galleryImages.get(holder.getBindingAdapterPosition()).captionUrl;
int index = holder.getBindingAdapterPosition();
if (index < 0 || index >= galleryImages.size()) {
return;
}
String previewCaption = galleryImages.get(index).caption;
String previewCaptionUrl = galleryImages.get(index).captionUrl;
boolean previewCaptionIsEmpty = TextUtils.isEmpty(previewCaption);
boolean previewCaptionUrlIsEmpty = TextUtils.isEmpty(previewCaptionUrl);
if (!previewCaptionIsEmpty || !previewCaptionUrlIsEmpty) {