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
async
Manos Pitsidianakis 2020-06-22 17:31:18 +03:00
parent 6bdd9b07bb
commit 688a798fa2
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
1 changed files with 1 additions and 1 deletions

View File

@ -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),
}
}
}