mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Don't check priority in mod_offline
This commit is contained in:
parent
404f212f37
commit
2de671c69f
1 changed files with 11 additions and 13 deletions
|
@ -35,19 +35,17 @@ end);
|
|||
module:hook("message/offline/broadcast", function(event)
|
||||
local origin = event.origin;
|
||||
|
||||
if origin.priority >= 0 then
|
||||
local node, host = origin.username, origin.host;
|
||||
local node, host = origin.username, origin.host;
|
||||
|
||||
local data = datamanager.list_load(node, host, "offline");
|
||||
if not data then return true; end
|
||||
for _, stanza in ipairs(data) do
|
||||
stanza = st.deserialize(stanza);
|
||||
stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = host, stamp = stanza.attr.stamp}):up(); -- XEP-0203
|
||||
stanza:tag("x", {xmlns = "jabber:x:delay", from = host, stamp = stanza.attr.stamp_legacy}):up(); -- XEP-0091 (deprecated)
|
||||
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
|
||||
origin.send(stanza);
|
||||
end
|
||||
datamanager.list_store(node, host, "offline", nil);
|
||||
return true;
|
||||
local data = datamanager.list_load(node, host, "offline");
|
||||
if not data then return true; end
|
||||
for _, stanza in ipairs(data) do
|
||||
stanza = st.deserialize(stanza);
|
||||
stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = host, stamp = stanza.attr.stamp}):up(); -- XEP-0203
|
||||
stanza:tag("x", {xmlns = "jabber:x:delay", from = host, stamp = stanza.attr.stamp_legacy}):up(); -- XEP-0091 (deprecated)
|
||||
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
|
||||
origin.send(stanza);
|
||||
end
|
||||
datamanager.list_store(node, host, "offline", nil);
|
||||
return true;
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue