Fix deserialization error

This commit is contained in:
kozabrada123 2023-05-07 11:47:12 +02:00
parent 4cfcf859a3
commit d4a546efa3
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ pub struct PresenceUpdate {
since: Option<i64>,
activities: Vec<Activity>,
status: String,
afk: bool,
afk: Option<bool>,
}
impl WebSocketEvent for PresenceUpdate {}