mod_presence, mod_offline: Merge message/offline/delete with message/offline/broadcast.

This commit is contained in:
Robert Hoelz 2010-12-09 12:28:05 -06:00
parent de4b6ceb33
commit 32c092ae0e
2 changed files with 1 additions and 8 deletions

View file

@ -47,13 +47,7 @@ module:hook("message/offline/broadcast", function(event)
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil; stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
origin.send(stanza); origin.send(stanza);
end end
datamanager.list_store(node, host, "offline", nil);
return true; return true;
end end
end); end);
module:hook("message/offline/delete", function(event)
local origin = event.origin;
local node, host = origin.username, origin.host;
return datamanager.list_store(node, host, "offline", nil);
end);

View file

@ -117,7 +117,6 @@ function handle_normal_presence(origin, stanza)
if priority >= 0 then if priority >= 0 then
local event = { origin = origin } local event = { origin = origin }
module:fire_event('message/offline/broadcast', event); module:fire_event('message/offline/broadcast', event);
module:fire_event('message/offline/delete', event);
end end
end end
if stanza.attr.type == "unavailable" then if stanza.attr.type == "unavailable" then