mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.iterators: Small fix for variable scoping issue
This commit is contained in:
parent
d7f5ff243e
commit
f74284d013
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ function it.count(f, s, var)
|
|||
local x = 0;
|
||||
|
||||
while true do
|
||||
local var = f(s, var);
|
||||
var = f(s, var);
|
||||
if var == nil then break; end
|
||||
x = x + 1;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue