mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-15 01:35:07 +08:00
Merge pull request #7519 from vector-im/bugfix/fre/unencrypted_media_event_json_type
Fix bad content types when sending unencrypted media event with additional content data
This commit is contained in:
commit
ac0d823c88
1
changelog.d/7519.bugfix
Normal file
1
changelog.d/7519.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Voice Broadcast - Fix error on voice messages in unencrypted rooms
|
@ -408,7 +408,7 @@ internal class UploadContentWorker(val context: Context, params: WorkerParameter
|
||||
newAttachmentAttributes: NewAttachmentAttributes
|
||||
) {
|
||||
localEchoRepository.updateEcho(eventId) { _, event ->
|
||||
val content: Content? = event.asDomain().content
|
||||
val content: Content? = event.asDomain(castJsonNumbers = true).content
|
||||
val messageContent: MessageContent? = content.toModel()
|
||||
// Retrieve potential additional content from the original event
|
||||
val additionalContent = content.orEmpty() - messageContent?.toContent().orEmpty().keys
|
||||
|
Loading…
Reference in New Issue
Block a user