# HG changeset patch # User Kim Alvefur # Date 1566516533 -7200 # Node ID d185c4961ee06de934babf9c453b8e7ba732c38b # Parent 51f145094648c80cd12e8e4085032c530063a292 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. diff -r 51f145094648 -r d185c4961ee0 plugins/mod_storage_internal.lua --- a/plugins/mod_storage_internal.lua Fri Aug 23 01:15:44 2019 +0200 +++ b/plugins/mod_storage_internal.lua Fri Aug 23 01:28:53 2019 +0200 @@ -220,17 +220,20 @@ 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