events: Make OlmV1Keys::ed25519 public

It was never meant to be private.
This commit is contained in:
Jonas Platte 2021-09-27 19:23:18 +02:00
parent 224d8a18e8
commit b4eac98acc
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -325,7 +325,7 @@ pub struct DecryptedOlmV1Event<C: MessageEventContent> {
#[derive(Clone, Debug, Deserialize, Serialize)] #[derive(Clone, Debug, Deserialize, Serialize)]
pub struct OlmV1Keys { pub struct OlmV1Keys {
/// An ed25519 key. /// An ed25519 key.
ed25519: String, pub ed25519: String,
} }
/// The decrypted payload of an `m.megolm.v1.aes-sha2` event. /// The decrypted payload of an `m.megolm.v1.aes-sha2` event.