XDGNotifications: increase rate limiting

3 notifications evenly spread per second did not make any sense.
Increase it to 1000 and see if it's ok
pull/234/head
Manos Pitsidianakis 4 years ago
parent 6bdd9b07bb
commit 688a798fa2
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -44,7 +44,7 @@ impl fmt::Display for XDGNotifications {
impl XDGNotifications {
pub fn new() -> Self {
XDGNotifications {
rate_limit: RateLimit::new(3, 1000),
rate_limit: RateLimit::new(1000, 1000),
}
}
}

Loading…
Cancel
Save