diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-07-01 14:24:36 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-07-03 22:43:43 -0400 |
| commit | 8d412732dc094ead3c5cf86c005d187f9624fc65 (patch) | |
| tree | 321f4ec443a8005c0bf3001c11e68eefe2bb4f48 /src/message/snapshot.rs | |
| parent | a15e3d580124f561864c6a39f1e035eb1b3aab13 (diff) | |
Replace `channel` with `conversation` throughout the API.
This is a **breaking change** for essentially all clients. Thankfully, there's presently just the one, so we don't need to go to much effort to accommoate that; the client is modified in this commit to adapt, users can reload their client, and life will go on.
Diffstat (limited to 'src/message/snapshot.rs')
| -rw-r--r-- | src/message/snapshot.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message/snapshot.rs b/src/message/snapshot.rs index 0e6e9ae..12d4daa 100644 --- a/src/message/snapshot.rs +++ b/src/message/snapshot.rs @@ -8,7 +8,7 @@ use crate::{clock::DateTime, conversation, event::Instant, user}; pub struct Message { #[serde(flatten)] pub sent: Instant, - pub channel: conversation::Id, + pub conversation: conversation::Id, pub sender: user::Id, pub id: Id, pub body: Body, |
