The relatedTo field in RoomSendQueueUpdate.MediaUpload is a transaction id (#6002)
It was being incorrectly mapped to an event id.
This commit is contained in:
parent
1cb5fe75d9
commit
666a5f4f74
2 changed files with 2 additions and 2 deletions
|
|
@ -18,5 +18,5 @@ sealed interface SendQueueUpdate {
|
||||||
data class SendError(val transactionId: TransactionId) : SendQueueUpdate
|
data class SendError(val transactionId: TransactionId) : SendQueueUpdate
|
||||||
data class RetrySendingEvent(val transactionId: TransactionId) : SendQueueUpdate
|
data class RetrySendingEvent(val transactionId: TransactionId) : SendQueueUpdate
|
||||||
data class SentEvent(val transactionId: TransactionId, val eventId: EventId) : SendQueueUpdate
|
data class SentEvent(val transactionId: TransactionId, val eventId: EventId) : SendQueueUpdate
|
||||||
data class MediaUpload(val relatedTo: EventId, val file: MediaSource?, val index: Long, val progress: Float) : SendQueueUpdate
|
data class MediaUpload(val relatedTo: TransactionId, val file: MediaSource?, val index: Long, val progress: Float) : SendQueueUpdate
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ fun RoomSendQueueUpdate.map(): SendQueueUpdate = when (this) {
|
||||||
is RoomSendQueueUpdate.NewLocalEvent -> SendQueueUpdate.NewLocalEvent(TransactionId(transactionId))
|
is RoomSendQueueUpdate.NewLocalEvent -> SendQueueUpdate.NewLocalEvent(TransactionId(transactionId))
|
||||||
is RoomSendQueueUpdate.CancelledLocalEvent -> SendQueueUpdate.CancelledLocalEvent(TransactionId(transactionId))
|
is RoomSendQueueUpdate.CancelledLocalEvent -> SendQueueUpdate.CancelledLocalEvent(TransactionId(transactionId))
|
||||||
is RoomSendQueueUpdate.MediaUpload -> SendQueueUpdate.MediaUpload(
|
is RoomSendQueueUpdate.MediaUpload -> SendQueueUpdate.MediaUpload(
|
||||||
relatedTo = EventId(relatedTo),
|
relatedTo = TransactionId(relatedTo),
|
||||||
file = file?.map(),
|
file = file?.map(),
|
||||||
index = index.toLong(),
|
index = index.toLong(),
|
||||||
progress = progress.current.toFloat() / progress.total.toFloat(),
|
progress = progress.current.toFloat() / progress.total.toFloat(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue