diff mod_muc_log_http/muc_log_http/mod_muc_log_http.lua @ 1021:043189eb41bc

mod_muc_log_http: Don't use nonexistent API
author Kim Alvefur <zash@zash.se>
date Sun, 26 May 2013 21:50:49 +0200
parents 290c21a5e0ee
children b69e5d63a4fe
line wrap: on
line diff
--- a/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Fri May 24 15:46:23 2013 +0200
+++ b/mod_muc_log_http/muc_log_http/mod_muc_log_http.lua	Sun May 26 21:50:49 2013 +0200
@@ -684,7 +684,7 @@
 end
 
 function module.load()
-	config = module:get_option_table("muc_log_http_config", {});
+	config = module:get_option("muc_log_http_config", {});
 	if config.showStatus == nil then config.showStatus = true; end
 	if config.showJoin == nil then config.showJoin = true; end
 	if config.urlBase and type(config.urlBase) == "string" then urlBase = config.urlBase; end