Fix | Share room keys with dehydrated devices

This commit is contained in:
Valere 2024-06-03 17:57:20 +02:00
parent b116ce3ee1
commit 4aaf22832f

View file

@ -58,5 +58,11 @@ internal data class DeviceKeysWithUnsigned(
* Additional data added to the device key information by intermediate servers, and not covered by the signatures.
*/
@Json(name = "unsigned")
val unsigned: UnsignedDeviceInfo? = null
val unsigned: UnsignedDeviceInfo? = null,
/**
* Optional property `dehydrated`, which is set to true for dehydrated devices.
*/
@Json(name = "dehydrated")
val dehydrated: Boolean? = null,
)