Rust sdk update: make the project compiling
This commit is contained in:
parent
843fc17dc3
commit
d85ef79f20
3 changed files with 3 additions and 1 deletions
|
|
@ -20,6 +20,7 @@ import io.element.android.libraries.matrix.api.core.EventId
|
||||||
|
|
||||||
sealed interface EventSendState {
|
sealed interface EventSendState {
|
||||||
object NotSentYet : EventSendState
|
object NotSentYet : EventSendState
|
||||||
|
object Canceled : EventSendState
|
||||||
|
|
||||||
data class SendingFailed(
|
data class SendingFailed(
|
||||||
val error: String
|
val error: String
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ class RustNotificationService(
|
||||||
eventId: EventId
|
eventId: EventId
|
||||||
): Result<NotificationData?> {
|
): Result<NotificationData?> {
|
||||||
return runCatching {
|
return runCatching {
|
||||||
client.getNotificationItem(roomId.value, eventId.value).use(notificationMapper::map)
|
client.getNotificationItem(roomId.value, eventId.value)?.use(notificationMapper::map)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,7 @@ fun RustEventSendState?.map(): EventSendState? {
|
||||||
RustEventSendState.NotSentYet -> EventSendState.NotSentYet
|
RustEventSendState.NotSentYet -> EventSendState.NotSentYet
|
||||||
is RustEventSendState.SendingFailed -> EventSendState.SendingFailed(error)
|
is RustEventSendState.SendingFailed -> EventSendState.SendingFailed(error)
|
||||||
is RustEventSendState.Sent -> EventSendState.Sent(EventId(eventId))
|
is RustEventSendState.Sent -> EventSendState.Sent(EventId(eventId))
|
||||||
|
RustEventSendState.Cancelled -> EventSendState.Canceled
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue