Mercurial > prosody-modules
view mod_uptime_presence/mod_uptime_presence.lua @ 3570:8a93af85f319
mod_muc_cloud_notify: Count codepoints instead of bytes
Still marked as a 'TODO' in XEP-0372, but Converse.js is
counting codepoints, and rough consensus is that this is
the easiest approach in the widest range of environments.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 02 May 2019 20:43:05 +0100 |
parents | d3497b81a3b5 |
children |
line wrap: on
line source
local st = require"util.stanza"; local datetime = require"util.datetime"; local presence = st.presence({ from = module.host }) :tag("delay", { xmlns = "urn:xmpp:delay", stamp = datetime.datetime(prosody.start_time) }); module:hook("presence/host", function(event) local stanza = event.stanza; if stanza.attr.type == "probe" then presence.attr.id = stanza.attr.id; presence.attr.to = stanza.attr.from; module:send(presence); return true; end end, 10);