Don't check priority in mod_offline

Thu, 09 Dec 2010 23:25:16 -0600

author
Robert Hoelz <rob@hoelz.ro>
date
Thu, 09 Dec 2010 23:25:16 -0600
changeset 3973
f5416372350d
parent 3972
a05cf5d9c7ab
child 3974
af40a7ce4f77

Don't check priority in mod_offline

plugins/mod_offline.lua file | annotate | diff | comparison | revisions
--- 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);

mercurial