# HG changeset patch # User Robert Hoelz # Date 1291958716 21600 # Node ID a66a9a70179a9dfae8dec398308995fe6f31e2d8 # Parent 898399fd8da12d869f5426271396d0287f69ad48 Don't check priority in mod_offline diff -r 898399fd8da1 -r a66a9a70179a plugins/mod_offline.lua --- a/plugins/mod_offline.lua Thu Dec 09 12:41:30 2010 -0600 +++ b/plugins/mod_offline.lua Thu Dec 09 23:25:16 2010 -0600 @@ -35,19 +35,17 @@ 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);