# HG changeset patch # User Jonas Schäfer # Date 1677069541 -3600 # Node ID f6b5f04d4b28024824d1f1b4fade9f357524e591 # Parent 4791e0412ff31791335dae915260259ded059bf1 mod_muc_rtbl: fix more incorrect more references to "event" diff -r 4791e0412ff3 -r f6b5f04d4b28 mod_muc_rtbl/mod_muc_rtbl.lua --- a/mod_muc_rtbl/mod_muc_rtbl.lua Wed Feb 22 13:35:03 2023 +0100 +++ b/mod_muc_rtbl/mod_muc_rtbl.lua Wed Feb 22 13:39:01 2023 +0100 @@ -101,9 +101,9 @@ end if not occupant.mod_muc_rtbl_host_hash then host_hash = sha256(jid.host(occupant.bare_jid), true); - event.occupant.mod_muc_rtbl_host_hash = host_hash; + occupant.mod_muc_rtbl_host_hash = host_hash; else - host_hash = event.occupant.mod_muc_rtbl_host_hash; + host_hash = occupant.mod_muc_rtbl_host_hash; end return bare_hash, host_hash end