mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 12:00:03 +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.
|
* Additional data added to the device key information by intermediate servers, and not covered by the signatures.
|
||||||
*/
|
*/
|
||||||
@Json(name = "unsigned")
|
@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…
Add table
Reference in a new issue