We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff43954 commit 8b1bd79Copy full SHA for 8b1bd79
vector/src/main/java/im/vector/app/core/epoxy/bottomsheet/BottomSheetMessagePreviewItem.kt
@@ -104,9 +104,8 @@ abstract class BottomSheetMessagePreviewItem : VectorEpoxyModel<BottomSheetMessa
104
.into(holder.staticMapImageView)
105
106
safeLocationUiData.locationPinProvider.create(safeLocationUiData.locationOwnerId) { pinDrawable ->
107
- GlideApp.with(holder.staticMapPinImageView)
108
- .load(pinDrawable)
109
- .into(holder.staticMapPinImageView)
+ // we are not using Glide since it does not display it correctly when there is no user photo
+ holder.staticMapPinImageView.setImageDrawable(pinDrawable)
110
}
111
112
0 commit comments