aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-09-02 20:52:19 +0100
committerMatthew Wild <mwild1@gmail.com>2013-09-02 20:52:19 +0100
commitec5552c24892fe7e6f09872d72c0d49857da61bf (patch)
treec2dc294a2796b1e8dfd3af3d96a03c89cce8d7e0 /util
parentfbc33630ea2d3f88bc1af5a9d1f7951dabd60ef2 (diff)
downloadprosody-ec5552c24892fe7e6f09872d72c0d49857da61bf.tar.gz
prosody-ec5552c24892fe7e6f09872d72c0d49857da61bf.zip
util.set: Fix :include() and :exclude() methods to iterate the input set correctly
Diffstat (limited to 'util')
-rw-r--r--util/set.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/set.lua b/util/set.lua
index 7f45526e..b9e9ef21 100644
--- a/util/set.lua
+++ b/util/set.lua
@@ -91,13 +91,13 @@ function new(list)
end
function set:include(otherset)
- for item in pairs(otherset) do
+ for item in otherset do
items[item] = true;
end
end
function set:exclude(otherset)
- for item in pairs(otherset) do
+ for item in otherset do
items[item] = nil;
end
end