# HG changeset patch # User Kim Alvefur # Date 1490910373 -7200 # Node ID 796ace2c8f9d7874986b246b1d1882befafc83e8 # Parent 6c22cb7b0e666efc45ee105e24ef2d6f92e10054 mod_storage_memory: Inclued 'with' in search [luacheck] diff -r 6c22cb7b0e66 -r 796ace2c8f9d mod_storage_memory/mod_storage_memory.lua --- 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);