plugins/mod_storage_memory.lua
changeset 10224 1e2b444acb72
parent 10027 f6959fe81a1d
child 10225 068692cb9e78
--- a/plugins/mod_storage_memory.lua	Thu Aug 22 01:00:31 2019 +0200
+++ b/plugins/mod_storage_memory.lua	Fri Aug 23 01:04:00 2019 +0200
@@ -170,11 +170,13 @@
 function archive_store:summary(username, query)
 	local iter, err = self:find(username, query)
 	if not iter then return iter, err; end
-	local summary = {};
+	local counts = {};
 	for _, _, _, with in iter do
-		summary[with] = (summary[with] or 0) + 1;
+		counts[with] = (counts[with] or 0) + 1;
 	end
-	return summary;
+	return {
+		counts = counts;
+	};
 end