mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_presence, mod_offline: Merge message/offline/delete with message/offline/broadcast.
This commit is contained in:
parent
de4b6ceb33
commit
32c092ae0e
2 changed files with 1 additions and 8 deletions
|
@ -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);
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue