mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.adminstream: Fire event based on stanza name too for convenience
This commit is contained in:
parent
baf9f5aeef
commit
56c159d7c9
1 changed files with 3 additions and 1 deletions
|
@ -271,7 +271,9 @@ local function new_client()
|
|||
|
||||
client.thread = runner(function (stanza)
|
||||
if st.is_stanza(stanza) then
|
||||
client.events.fire_event("received", stanza);
|
||||
if not client.events.fire_event("received", stanza) and not stanza.attr.xmlns then
|
||||
client.events.fire_event("received/"..stanza.name, stanza);
|
||||
end
|
||||
elseif stanza.stream == "opened" then
|
||||
stream_callbacks._streamopened(client, stanza.attr);
|
||||
client.events.fire_event("connected");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue