This commit is contained in:
Believethehype
2024-07-31 12:02:39 +02:00
parent 1a4396dbe3
commit b8e10b040d

View File

@@ -333,24 +333,17 @@ fun InnerRenderGalleryThumb(
contentAlignment = BottomStart, contentAlignment = BottomStart,
) { ) {
card.image?.let { card.image?.let {
var blurHash: String? = null var blurHash = (note.associatedNote?.event as ProfileGalleryEntryEvent).blurhash()
if ((note.associatedNote?.event as ProfileGalleryEntryEvent).blurhash() != null) {
blurHash = (note.associatedNote?.event as ProfileGalleryEntryEvent).blurhash()
}
var fullUrl = it
var description = (note.associatedNote?.event as ProfileGalleryEntryEvent).content var description = (note.associatedNote?.event as ProfileGalleryEntryEvent).content
var hash = (note.associatedNote?.event as ProfileGalleryEntryEvent).hash() // var hash = (note.associatedNote?.event as ProfileGalleryEntryEvent).hash()
var dimensions = (note.associatedNote?.event as ProfileGalleryEntryEvent).dimensions() var dimensions = (note.associatedNote?.event as ProfileGalleryEntryEvent).dimensions()
var mimeType = (note.associatedNote?.event as ProfileGalleryEntryEvent).mimeType() var mimeType = (note.associatedNote?.event as ProfileGalleryEntryEvent).mimeType()
// var content = Im(null, "10x10", blurhash = blurhash)
var content: BaseMediaContent? = null var content: BaseMediaContent? = null
if (isVideoUrl(it)) { if (isVideoUrl(it)) {
content = content =
MediaUrlVideo( MediaUrlVideo(
url = fullUrl, url = it,
description = description, description = description,
hash = null, hash = null,
blurhash = blurHash, blurhash = blurHash,
@@ -361,7 +354,7 @@ fun InnerRenderGalleryThumb(
} else { } else {
content = content =
MediaUrlImage( MediaUrlImage(
url = fullUrl, url = it,
description = description, description = description,
hash = null, // We don't want to show the hash banner here hash = null, // We don't want to show the hash banner here
blurhash = blurHash, blurhash = blurHash,