Fixing rate limiting.
This commit is contained in:
parent
bbc7159ede
commit
514c1ab298
1 changed files with 3 additions and 5 deletions
|
@ -318,12 +318,10 @@ impl ChatServer {
|
||||||
};
|
};
|
||||||
|
|
||||||
rate_limit.last_checked = current;
|
rate_limit.last_checked = current;
|
||||||
if !check_only {
|
|
||||||
rate_limit.allowance += time_passed * (rate as f64 / per as f64);
|
rate_limit.allowance += time_passed * (rate as f64 / per as f64);
|
||||||
if rate_limit.allowance > rate as f64 {
|
if !check_only && rate_limit.allowance > rate as f64 {
|
||||||
rate_limit.allowance = rate as f64;
|
rate_limit.allowance = rate as f64;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if rate_limit.allowance < 1.0 {
|
if rate_limit.allowance < 1.0 {
|
||||||
println!(
|
println!(
|
||||||
|
|
Reference in a new issue