mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_storage_internal: Include last text message
A protocol built on this API now allows showing a list of unread conversations with a counter, ordered by either oldest or newest message, along with the text body itself.
This commit is contained in:
parent
9d5e31fd48
commit
d45b4c026f
1 changed files with 4 additions and 1 deletions
|
@ -220,17 +220,20 @@ function archive:summary(username, query)
|
|||
local counts = {};
|
||||
local earliest = {};
|
||||
local latest = {};
|
||||
for _, _, when, with in iter do
|
||||
local body = {};
|
||||
for _, stanza, when, with in iter do
|
||||
counts[with] = (counts[with] or 0) + 1;
|
||||
if earliest[with] == nil then
|
||||
earliest[with] = when;
|
||||
end
|
||||
latest[with] = when;
|
||||
body[with] = stanza:get_child_text("body") or body[with];
|
||||
end
|
||||
return {
|
||||
counts = counts;
|
||||
earliest = earliest;
|
||||
latest = latest;
|
||||
body = body;
|
||||
};
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue