Increase limit integer size to match spacebars' possibilities

This commit is contained in:
bitfl0wer 2024-07-24 15:57:12 +02:00
parent f0fc6eab4d
commit 7bb35e5ed8
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Copy, PartialOrd, Ord, Hash)]
pub struct GlobalRateLimit {
pub limit: u16,
pub limit: u64,
pub window: u64,
pub enabled: bool,
}