mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
e32f71d3d4
1 changed files with 4 additions and 2 deletions
|
@ -150,12 +150,14 @@ function archive:find(username, query)
|
|||
end
|
||||
if query.start then
|
||||
items:filter(function (item)
|
||||
return item.when >= query.start;
|
||||
local when = item.when or datetime.parse(item.attr.stamp);
|
||||
return when >= query.start;
|
||||
end);
|
||||
end
|
||||
if query["end"] then
|
||||
items:filter(function (item)
|
||||
return item.when <= query["end"];
|
||||
local when = item.when or datetime.parse(item.attr.stamp);
|
||||
return when <= query["end"];
|
||||
end);
|
||||
end
|
||||
if query.total then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue