# HG changeset patch # User JC Brand # Date 1588325649 -7200 # Node ID 845d13ab0dc032733f151804a09915c7a8799bac # Parent d56b3c0195a84106f6d4855abd55ba89d1e36aef mod_muc_batched_probe: Call instance method diff -r d56b3c0195a8 -r 845d13ab0dc0 mod_muc_batched_probe/mod_muc_batched_probe.lua --- a/mod_muc_batched_probe/mod_muc_batched_probe.lua Wed Apr 29 13:00:22 2020 +0200 +++ b/mod_muc_batched_probe/mod_muc_batched_probe.lua Fri May 01 11:34:09 2020 +0200 @@ -23,7 +23,7 @@ end; local room = get_room_from_jid(stanza.attr.to); - for item in query.get_children() do + for item in query:children() do local probed_jid = item.attr.jid; room:respond_to_probe(stanza.attr.from, probed_jid); end