change signed to unsigned integer

This commit is contained in:
Vivien 2023-07-30 20:23:12 +02:00
parent 07f283a205
commit 50538eb15d
1 changed files with 3 additions and 1 deletions

View File

@ -178,9 +178,11 @@ pub struct EmbedField {
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub struct Reaction {
pub count: i32,
pub count: u32,
pub burst_count: u32,
pub me: bool,
pub emoji: Emoji,
}
#[derive(Debug, PartialEq, Clone, Copy, Serialize, Deserialize)]