Fix deserialization error

This commit is contained in:
kozabrada123 2023-05-07 11:47:12 +02:00
parent 9f187b8864
commit fc93762cf7
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 {}