diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-02-20 02:23:21 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-02-20 02:23:21 +0500 |
commit | b561d477830c46fbf4bda0b8145788c4c45ec30f (patch) | |
tree | d6367aaffe63a61489dc42f03fe87f87488843af | |
parent | 0fe02618e58fb93ebdf11ff38efcf71015a0ca81 (diff) | |
download | prosody-b561d477830c46fbf4bda0b8145788c4c45ec30f.tar.gz prosody-b561d477830c46fbf4bda0b8145788c4c45ec30f.zip |
MUC: Use util.stanza.clone instead of pre/deserialize for cloning stanzas
-rw-r--r-- | plugins/mod_muc.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/mod_muc.lua b/plugins/mod_muc.lua index b82ea37f..bae3d476 100644 --- a/plugins/mod_muc.lua +++ b/plugins/mod_muc.lua @@ -62,7 +62,7 @@ function filter_xmlns_from_stanza(stanza, filters) end local presence_filters = {["http://jabber.org/protocol/muc"]=true;["http://jabber.org/protocol/muc#user"]=true}; function get_filtered_presence(stanza) - return filter_xmlns_from_stanza(st.deserialize(st.preserialize(stanza)), presence_filters); + return filter_xmlns_from_stanza(st.clone(stanza), presence_filters); end function getUsingPath(stanza, path, getText) local tag = stanza; @@ -162,10 +162,10 @@ function broadcast_message(from, room, subject, body) if not subject and body then -- add to history local history = rooms_info:get(room, 'history'); if not history then history = {}; rooms_info:set(room, 'history', history); end - -- stanza = st.deserialize(st.preserialize(stanza)); + -- stanza = st.clone(stanza); stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = muc_domain, stamp = datetime.datetime()}):up(); -- XEP-0203 stanza:tag("x", {xmlns = "jabber:x:delay", from = muc_domain, stamp = datetime.legacy()}):up(); -- XEP-0091 (deprecated) - t_insert(history, st.preserialize(stanza)); + t_insert(history, st.clone(st.preserialize(stanza))); while #history > history_length do t_remove(history, 1) end end end @@ -182,10 +182,10 @@ function broadcast_message_stanza(room, stanza, historic) if historic then -- add to history local history = rooms_info:get(room, 'history'); if not history then history = {}; rooms_info:set(room, 'history', history); end - -- stanza = st.deserialize(st.preserialize(stanza)); + -- stanza = st.clone(stanza); stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = muc_domain, stamp = datetime.datetime()}):up(); -- XEP-0203 stanza:tag("x", {xmlns = "jabber:x:delay", from = muc_domain, stamp = datetime.legacy()}):up(); -- XEP-0091 (deprecated) - t_insert(history, st.preserialize(stanza)); + t_insert(history, st.clone(st.preserialize(stanza))); while #history > history_length do t_remove(history, 1) end end end |