fix READY deserialization error on spacebar

This commit is contained in:
kozabrada123 2024-08-18 14:20:21 +02:00
parent e0ae1a9ec6
commit 28e3f21cbf
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ pub struct Session {
// Note: I don't think this one exists yet? Though I might've made a mistake and this might be a duplicate // Note: I don't think this one exists yet? Though I might've made a mistake and this might be a duplicate
pub struct ClientInfo { pub struct ClientInfo {
pub client: Option<String>, pub client: Option<String>,
pub os: String, pub os: Option<String>,
pub version: u8, pub version: u8,
} }