mod_websocket: Make sure stanza xmlns filter runs late in the chain

This commit is contained in:
Kim Alvefur 2016-03-18 00:08:33 +01:00
parent 1994ce590f
commit 4633eb56fb

View file

@ -275,7 +275,7 @@ function handle_request(event)
attr["xmlns:stream"] = attr["xmlns:stream"] or xmlns_streams;
end
return stanza;
end);
end, -1000);
add_filter(session, "bytes/out", function(data)
return build_frame({ FIN = true, opcode = 0x01, data = tostring(data)});