changeset 2660:796ace2c8f9d

mod_storage_memory: Inclued 'with' in search [luacheck]
author Kim Alvefur <zash@zash.se>
date Thu, 30 Mar 2017 23:46:13 +0200
parents 6c22cb7b0e66
children 1d734acabd46
files mod_storage_memory/mod_storage_memory.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mod_storage_memory/mod_storage_memory.lua	Thu Mar 30 23:45:51 2017 +0200
+++ b/mod_storage_memory/mod_storage_memory.lua	Thu Mar 30 23:46:13 2017 +0200
@@ -99,6 +99,7 @@
 		limit = query.limit;
 		qstart = query.start or qstart;
 		qend = query["end"] or qend;
+		qwith = query.with;
 	end
 	if not start then return nil, "invalid-key"; end
 	local iter = coroutine.wrap(archive_iter);