changeset 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 9839198539c8
children f15c25fff9cc
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	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