util.adminstream: Fire event based on stanza name too for convenience

This commit is contained in:
Matthew Wild 2020-06-03 22:26:48 +01:00
parent baf9f5aeef
commit 56c159d7c9

View file

@ -271,7 +271,9 @@ local function new_client()
client.thread = runner(function (stanza) client.thread = runner(function (stanza)
if st.is_stanza(stanza) then 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 elseif stanza.stream == "opened" then
stream_callbacks._streamopened(client, stanza.attr); stream_callbacks._streamopened(client, stanza.attr);
client.events.fire_event("connected"); client.events.fire_event("connected");