mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-04 01:48:14 +02:00
Merge pull request #977 from believethehype/gallery_alternative_version
GalleryEntryEvent: add relay hint to etag
This commit is contained in:
commit
128831109a
@ -2204,6 +2204,7 @@ class Account(
|
||||
ProfileGalleryEntryEvent.create(
|
||||
url = url,
|
||||
eventid = idHex,
|
||||
relayhint = relay,
|
||||
/*magnetUri = magnetUri,
|
||||
mimeType = headerInfo.mimeType,
|
||||
hash = headerInfo.hash,
|
||||
|
@ -83,6 +83,7 @@ class ProfileGalleryEntryEvent(
|
||||
fun create(
|
||||
url: String,
|
||||
eventid: String? = null,
|
||||
relayhint: String? = null,
|
||||
magnetUri: String? = null,
|
||||
mimeType: String? = null,
|
||||
alt: String? = null,
|
||||
@ -99,10 +100,13 @@ class ProfileGalleryEntryEvent(
|
||||
createdAt: Long = TimeUtils.now(),
|
||||
onReady: (ProfileGalleryEntryEvent) -> Unit,
|
||||
) {
|
||||
var etag = eventid?.let { arrayOf("e", it) }
|
||||
relayhint?.let { etag = etag?.plus(it) }
|
||||
|
||||
val tags =
|
||||
listOfNotNull(
|
||||
arrayOf(URL, url),
|
||||
eventid?.let { arrayOf("e", it) },
|
||||
eventid?.let { etag },
|
||||
magnetUri?.let { arrayOf(MAGNET_URI, it) },
|
||||
mimeType?.let { arrayOf(MIME_TYPE, it) },
|
||||
alt?.ifBlank { null }?.let { arrayOf(ALT, it) } ?: arrayOf("alt", ALT_DESCRIPTION),
|
||||
|
Loading…
x
Reference in New Issue
Block a user