aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-17 03:26:21 +0200
committerKim Alvefur <zash@zash.se>2017-04-17 03:26:21 +0200
commit33be2cd463e8dba9a1ed85421bf39deed303da34 (patch)
tree21f7c1f911c03f692a641e940c1994e639c5a129 /util
parent2e1a6cd73ece566c4ebaf76b0b997e7fddf67fd6 (diff)
downloadprosody-33be2cd463e8dba9a1ed85421bf39deed303da34.tar.gz
prosody-33be2cd463e8dba9a1ed85421bf39deed303da34.zip
util.datamanager: Use already known index instead of measuring length each iteration
Diffstat (limited to 'util')
-rw-r--r--util/datamanager.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua
index 6edf7ac0..bd8fb7bb 100644
--- a/util/datamanager.lua
+++ b/util/datamanager.lua
@@ -268,8 +268,8 @@ local function list_store(username, host, datastore, data)
if callback(username, host, datastore) == false then return true; end
-- save the datastore
local d = {};
- for _, item in ipairs(data) do
- d[#d+1] = "item(" .. serialize(item) .. ");\n";
+ for i, item in ipairs(data) do
+ d[i] = "item(" .. serialize(item) .. ");\n";
end
local ok, msg = atomic_store(getpath(username, host, datastore, "list", true), t_concat(d));
if not ok then