Fix attachment pointer conversion

This commit is contained in:
Niels Andriesse 2021-05-17 11:23:49 +10:00
parent 361be28223
commit 9074355b4e

View File

@ -230,23 +230,24 @@ fun DatabaseAttachment.toAttachmentStream(context: Context): SessionServiceAttac
fun DatabaseAttachment.toSignalAttachmentPointer(): SignalServiceAttachmentPointer? { fun DatabaseAttachment.toSignalAttachmentPointer(): SignalServiceAttachmentPointer? {
if (TextUtils.isEmpty(location)) { return null } if (TextUtils.isEmpty(location)) { return null }
if (TextUtils.isEmpty(key)) { return null } // `key` can be empty in an open group context (no encryption means no encryption key)
return try { return try {
val id: Long = location!!.toLong() val id = location!!.toLong()
val key: ByteArray = Base64.decode(key!!) val key = Base64.decode(key!!)
SignalServiceAttachmentPointer(id, SignalServiceAttachmentPointer(
contentType, id,
key, contentType,
Optional.of(Util.toIntExact(size)), key,
Optional.absent(), Optional.of(Util.toIntExact(size)),
width, Optional.absent(),
height, width,
Optional.fromNullable(digest), height,
Optional.fromNullable(fileName), Optional.fromNullable(digest),
isVoiceNote, Optional.fromNullable(fileName),
Optional.fromNullable(caption), isVoiceNote,
url) Optional.fromNullable(caption),
url
)
} catch (e: Exception) { } catch (e: Exception) {
null null
} }