changeset 4809:9e9ec0f0b128

mod_muc_rtbl: Fix to hook server-started globally, to fetch entries at startup (thanks mirux)
author Matthew Wild <mwild1@gmail.com>
date Mon, 06 Dec 2021 12:02:45 +0000
parents 8a63a0daf129
children 181738ae4117
files mod_muc_rtbl/mod_muc_rtbl.lua
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_muc_rtbl/mod_muc_rtbl.lua	Mon Dec 06 10:36:02 2021 +0000
+++ b/mod_muc_rtbl/mod_muc_rtbl.lua	Mon Dec 06 12:02:45 2021 +0000
@@ -105,5 +105,7 @@
 if prosody.start_time then
 	request_list();
 else
-	module:hook("server-started", request_list);
+	module:hook_global("server-started", function ()
+		request_list();
+	end);
 end