mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.throttle: Fix 'outstanding' return value
This commit is contained in:
parent
489b84390e
commit
cb1415272f
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ function throttle:poll(cost, split)
|
|||
if split then
|
||||
self.balance = 0;
|
||||
end
|
||||
return false, balance, (cost-self.balance);
|
||||
return false, balance, (cost-balance);
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue