mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Fix | Share room keys with dehydrated devices
This commit is contained in:
parent
b116ce3ee1
commit
4aaf22832f
1 changed files with 7 additions and 1 deletions
|
@ -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,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue