changeset 1250:d7bbacdabb8f

mod_muc_log_http: Change config option back to what it says in the docs (Thanks Alex for noticing)
author Kim Alvefur <zash@zash.se>
date Sun, 15 Dec 2013 00:50:46 +0100
parents 182cb8a8d2d8
children 280adf09ae12
files mod_muc_log_http/muc_log_http/mod_muc_log_http.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Thu Dec 12 22:38:20 2013 +0100
+++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Sun Dec 15 00:50:46 2013 +0100
@@ -687,7 +687,7 @@
 end
 
 function module.load()
-	config = module:get_option("muc_log_http_config", {});
+	config = module:get_option("muc_log_http", {});
 	if module:get_option_boolean("muc_log_presences", true) then config.show_presences = true end
 	if config.show_status == nil then config.show_status = true; end
 	if config.show_join == nil then config.show_join = true; end