diff options
author | 2025-02-24 08:41:58 +0000 | |
---|---|---|
committer | 2025-02-24 08:41:58 +0000 | |
commit | 66e37108cd61750aeaaa6d521742c1fb494b1394 (patch) | |
tree | ea13b8343bd8254af0d6f5f6fdb70c08539dd7a6 /luz/src/chat.rs | |
parent | 2e6ad369c51fa7e60df8c7deaa59ec7705c3ff98 (diff) | |
download | luz-66e37108cd61750aeaaa6d521742c1fb494b1394.tar.gz luz-66e37108cd61750aeaaa6d521742c1fb494b1394.tar.bz2 luz-66e37108cd61750aeaaa6d521742c1fb494b1394.zip |
fix bugs
Diffstat (limited to '')
-rw-r--r-- | luz/src/chat.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luz/src/chat.rs b/luz/src/chat.rs index 4fb8579..7bb99e1 100644 --- a/luz/src/chat.rs +++ b/luz/src/chat.rs @@ -28,7 +28,7 @@ pub struct Body { #[derive(sqlx::FromRow)] pub struct Chat { - correspondent: JID, + pub correspondent: JID, // message history is not stored in chat, retreived separately. // pub message_history: Vec<Message>, } |